Does anyone know how I can add some background color and change the color of the dots and maybe shape in the p3 plot of boxplot and jitter?
My code:
p1 <- qplot(Country, Ethanol, data=Wine, geom='boxplot', fill=Country) +
theme_linedraw() + ggtitle('Boxplot for wine')
p1
p2 <- qplot(Country, Ethanol, data=Wine, geom='jitter', color=Country, shape=Country) +
theme_light() + ggtitle('Jitter for wine')
p2
p3 <- qplot(Country, Ethanol, data=Wine, geom=c('boxplot',"jitter"), fill=Country,
shape=Country, main='Boxplot+Jitter for wine') + theme_bw()
p3
The plot:
