gpt4 book ai didi

r - 如何为ggplot2添加手动颜色(geom_smooth/geom_line)

转载 作者:行者123 更新时间:2023-12-04 10:35:43 26 4
gpt4 key购买 nike

我想用ggplot2建立一个情节。因此,我使用geom_line来可视化线,并使用geom_smooth来显示特定索引的最小-最大范围。
使用了两个数据框,第一行包含日期(例如:2013-02-04),下一行是测量值(例如2.532283)。

首先,我生成一个具有所有样式的空ggplot:

yrange_EVI2 =是索引范围(最小-最大)
xrange =是x轴的日期范围(最早-最新日期)

EVI2_veg <- ggplot() + geom_blank() + 
ylim(yrange_EVI2) + xlim(xrange) +
ggtitle("EVI2 for reference-data in Azraq (Jordan)") + ylab("EVI2") + xlab("month") +
theme_bw(base_size = 12, base_family = "Times New Roman")

第二步是绘制范围(最小-最大范围)和具有特定值平均值的线:
EVI2_veg <- EVI2_veg +
geom_smooth(aes(x=Date, y=Vegetable_mean, ymin=Vegetable_min, ymax=Vegetable_max), data=Grouped_Croptypes_EVI2, stat="identity") +
geom_line(aes(x=Date, y=Tomato), data=Sample_EVI2_A_SPOT)

在最后一步中,我尝试使用scale_fill_manual和scale_color_manual更改颜色:
EVI2_veg <- EVI2_veg + 
scale_fill_manual("Min-Max-Range and Mean \nof specific Croptypes",labels=c("Vegetable","Tomato"),values=c("#008B00","#FFFFFF")) +
scale_color_manual("Min-Max-Range and Mean \nof specific Croptypes",labels=c("Vegetable","Tomato"),values=c("#008B00","#CD4F39"))

我阅读了很多有关特定软件包的答案和手册,但是当我使用不同的colors =“”和fill =“”时,我不明白:
  • geom_line(ads(color =“”,fill =“”))
  • geom_line(ads(),color =“”,fill =“”)
  • scale_color_manual(values = c(“”))或scale_fill_manual =(values = c(“”))

  • 如果我没有定义1.没有图例出现。但是,如果我按照代码中的定义进行定义,则颜色将与图不匹配。这是我第一次使用ggplot2,我读了很多这个有用的程序包,但是我不明白如何定义颜色。以及剧情和图例中的颜色如何匹配。如果有人可以帮助我,那就太好了。

    最佳答案

    首先,将示例数据包含在任何绘图代码中总是很不错的,否则我们将无法运行它来查看您所看到的内容。在发表其他文章之前,请先阅读how to make a great R reproducible example。这将使人们更轻松地为您提供帮助。无论如何,这是一些示例数据

    Sample_EVI2_A_SPOT<-data.frame(
    Date=seq(as.Date("2014-01-01"), as.Date("2014-02-01"), by="1 day"),
    Tomato = cumsum(rnorm(32))
    )
    Grouped_Croptypes_EVI2<-data.frame(
    Date=seq(as.Date("2014-01-01"), as.Date("2014-02-01"), by="1 day"),
    Vegetable_mean=cumsum(rnorm(32))
    )
    Grouped_Croptypes_EVI2<-transform(Grouped_Croptypes_EVI2,
    Vegetable_max=Vegetable_mean+runif(32)*5,
    Vegetable_min=Vegetable_mean-runif(32)*5
    )

    这应该使您想要的情节
    EVI2_veg <- ggplot() + geom_blank() + 
    ggtitle("EVI2 for reference-data in Azraq (Jordan)") +
    ylab("EVI2") + xlab("month") +
    theme_bw(base_size = 12, base_family = "Times New Roman") +
    geom_smooth(aes(x=Date, y=Vegetable_mean, ymin=Vegetable_min,
    ymax=Vegetable_max, color="Vegetable", fill="Vegetable"),
    data=Grouped_Croptypes_EVI2, stat="identity") +
    geom_line(aes(x=Date, y=Tomato, color="Tomato"), data=Sample_EVI2_A_SPOT) +
    scale_fill_manual(name="Min-Max-Range and Mean \nof specific Croptypes",
    values=c(Vegetable="#008B00", Tomato="#FFFFFF")) +
    scale_color_manual(name="Min-Max-Range and Mean \nof specific Croptypes",
    values=c(Vegetable="#008B00",Tomato="#CD4F39"))
    EVI2_veg

    请注意在 color=调用中添加了 fill=aes()。您确实应该将所需的内容放在 aes()的图例中。在这里,我指定“假”颜色,然后在 scale_*_manual命令中对其进行定义。

    关于r - 如何为ggplot2添加手动颜色(geom_smooth/geom_line),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24063163/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com