Comment changer la couleur de fond de mon ggplot ? theme(plot.background =)
Pour modifier la couleur de fond de votre graphique avec ggplot, utilisez l’argument suivant dans votre theme() : library(ggplot2) ggplot(iris, aes(Sepal.Width, Sepal.Length)) + geom_point() + theme(plot.background = element_rect(fill = « pink »))Read More →