2.2 Bug Fix
- Functionality added for aesthetic set to NULL, ie aes(group=NULL)
example plot
plot <-
iris%>%
ggplot(aes(x=cut(Sepal.Width,2),y=Sepal.Width)) +
aes(colour=Species,group=Species)+
geom_point(alpha = 0.5,shape = 16, size = 1) +
geom_boxplot(aes(group=NULL), varwidth = FALSE,notch = FALSE, show.legend = TRUE)+
stat_summary(fun.y = 'median', geom = "line")+
theme_bw(base_size = 16) +
theme(legend.position = "bottom",
legend.box = "vertical", legend.direction = "horizontal",
axis.text.x = ggplot2::element_text(angle = 90,hjust = 1, vjust = 0.5),
legend.title = element_blank())
ggedit(plot)