Hi I have made a ggbiplot with the example given in the package. I would like to know if it's possible to remove the grey background.
library(ggbiplot)
data(wine)
wine.pca <- prcomp(wine, scale. = TRUE)
print(ggbiplot(wine.pca, obs.scale = 1, var.scale = 1, groups = wine.class, ellipse = TRUE, circle = TRUE))
I have looked into the functions given here
https://github.com/vqv/ggbiplot/blob/master/R/ggbiplot.r
But as far as I can see none of these parameteres changes the background.
I am not experienced in R, but if someone has a solution for the wine example I am sure I can extrapolate to my own data.
Thank you very much!