我经常需要一个geom_path
里面有黑点的。因此,我想有一个新geom_dotpath
的可以用来代替调用
geom_path
and geom_point
。
LineColours <- brewer.pal(n=8,name="Paired")
ggplot() +
geom_path(data=mtcars, aes(x=mpg, y=qsec), size=1.5, colour=LineColours[3]) +
geom_point(data=mtcars, aes(x=mpg, y=qsec), size=1.5, colour=LineColours[4])
最好的情况是,如果新功能可以使用为 ggplot2 生成亮色和暗色对来自动找到较暗的颜色。