当前位置:  开发笔记 > 编程语言 > 正文

ggplot2中多个图例的不同方向?

如何解决《ggplot2中多个图例的不同方向?》经验,为你挑选了1个好方法。

如何制作带有两个图例的图表,其中一个图例是垂直的而另一个图例是水平的?

使用虹膜数据集,这是一个例子:

ggplot(iris,aes(x=Sepal.Width,y=Petal.Width,color=Species,size=Sepal.Length))+
geom_point() + 
scale_size_continuous(breaks=c(seq(from=5,to=7,by=0.4))) +
facet_wrap(~Species,ncol = 2) +
theme(legend.position=c(.7,.2))

我希望Species颜色图例保持垂直,但Sepal.Length下面的图例是水平的.这可能吗?

注意:我知道刻面会使彩色图例变得不必要.我只是以此为例.



1> Matthew Plou..:

您可以使用guides界面控制特定图例的功能.

ggplot(iris,aes(x=Sepal.Width,y=Petal.Width,color=Species,size=Sepal.Length))+
    geom_point() + 
    scale_size_continuous(breaks=c(seq(from=5,to=7,by=0.4))) +
    guides(size=guide_legend(direction='horizontal')) +
    facet_wrap(~Species,ncol = 2) +
    theme(legend.position=c(.7,.2))

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有