本文共 302 字,大约阅读时间需要 1 分钟。
library(ggplot2)ggplot(mpg,aes(displ,hwy,color=class))+ geom_point()+ geom_smooth(method = "lm")+ theme(legend.position = "bottom" ,legend.box = "horizontal")+ scale_shape(guide = guide_legend(title.position = "top")) + scale_colour_discrete(guide = guide_legend(title.position = "top", nrow = 1))
转载地址:http://kyue.baihongyu.com/