我正在尝试将图例项目的新顺序链接到某些颜色。 但是,每次尝试尝试时,我都必须在选择想要的商品顺序或选择想要的颜色之间进行选择。
这是我使用的代码(除了最后一行的粗体部分,它们都完全相同): 1)。颜色:
TPC_T2<-ggplot(T2_M4M1, aes(x=Temperature, y=mm_per_day, colour=Population, group=Population))
+ geom_line()
+ geom_point()
+ theme(panel.background =element_rect(fill="white", colour="lightgrey"))
**+ scale_color_manual(values=c("forestgreen", "royalblue","lightcoral"))**
2)。顺序:
TPC_T2<-ggplot(T2_M4M1, aes(x=Temperature, y=mm_per_day, colour=Population, group=Population))
+ geom_line()
+ geom_point()
+ theme(panel.background = element_rect(fill="white",colour="lightgrey"))
**+scale_colour_discrete(breaks=c("SAR~200m","MOR~900m","PAC~1600m"))**
我试图在同一代码中添加这两行(粗体),但是不起作用。我也尝试这样做:
+ scale_fill_manual(breaks=c("SAR~200m","MOR~900m","PAC~1600m"), values=c("royalblue", "forestgreen", "lightcoral"))
但是它也不起作用。
我想按高度和颜色排序: SAR〜200m红色 MOR〜900m绿色 PAC〜1600m蓝色
您知道为什么它不起作用吗?