我的问题很简单,但经过多次尝试都未能解决。我只想打印一个多面图的一些方面(用 ggplot2 中的 facet_wrap 制作),并删除我不感兴趣的那些。
我有 ggplot2 的 facet_wrap,如下:
#anomalies linear trends
an.trends <- ggplot()+
geom_smooth(method="lm", data=tndvilong.anomalies, aes(x=year, y=NDVIan, colour=TenureZone,
group=TenureZone))+
scale_color_manual(values=miscol) +
ggtitle("anomalies' trends")
#anomalies linear trends by VEG
an.trendsVEG <- an.trends + facet_wrap(~VEG,ncol=2)
print(an.trendsVEG)
我得到了我所期望的情节(你可以在下面的链接中看到它):
问题是:如何只打印我感兴趣的面?我只想打印“CenKal_ShWoodl”、“HlShl_ShDens”、“NKal_ShWoodl”和“ThShl_ShDens”
谢谢