私の質問は非常に単純ですが、何度も試しても解決できませんでした。ファセット プロット (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」のみを印刷したい
ありがとう