Suddenly ggplot began causing errors and froze my base system a reboot gave me the following: "R Session Error", "The previous R session was abnormally terminated due to an unexpected crash"
I am using RStudio Server
In an effort to solve the problem I created a new VM (ubuntu 20.04 on windows 10) upgraded to R studio Version 1.4.1106 I have upgraded to R 4.1 and installed new packages (tidyverse) which is critical to the work but still getting a crash.
Below is a very simple test script that fails with the error noted above As noted this is on a fresh install
TEST Script
library(tidyverse)
data(iris)
ggplot(iris, aes(Sepal.Length, Petal.Length, colour=Species)) +
geom_point()