我目前正在使用ggplot2。我的数据集包含物种,个体数量,区域和年份。 到目前为止,我已经使用下面显示的代码。
ggplot(Data)+
geom_point(aes(Species,Number.of.Individuals ,colour=Bioregion))+
facet_grid(Year~.)+
theme(legend.key.size = unit(0.1, "cm"),legend.position = "none",
legend.text= element_text(size=3))+
theme_minimal()+
guides(colour=TRUE)
我想问几个问题:
1)我可以只绘制参考线而不使用图形,因为它占用了太多空间
2)如何在ggplot2中旋转facet_grid的轴标签,我用此angle=90
,vjust=1
(或类似的东西)尝试了一下,但没有用...