I'm doing some panel graphics in ggplot2 . See the example below:
library(ggplot2)
ggplot(mpg, aes(x=displ, y=hwy)) +
geom_point() +
geom_smooth(method="lm", se=FALSE, colour="black") +
facet_wrap(~ trans)
Ihavemygraphicalwindo...
asked by
13.09.2018 / 18:15