gpt4 book ai didi

r - ggplot 线条颜色 "black"变成红色

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

我使用了下面的脚本来制作下面的图表

hypttauplot <- qplot(fuclin_csf, fitHYPTTAU, data=selTAU, geom=c("smooth"),
method="glm", color='black', linetype=BL_HYPT) +
theme_classic() + xlab("Time (years)") + ylab("Tau (pg/ml)") +
scale_x_continuous(expand=c(0,0)) +
ggtitle("A. Hypertension") +
theme(legend.position = "none")

enter image description here

但现在我的问题是:为什么线条是红色而不是黑色?我怎样才能把它们变成黑色?

最佳答案

您必须使用 I()qplot() 中手动设置美学,例如colour=I("black")(设置与美学映射)。

# mapping
qplot(carat, price, data=diamonds, color="black")
# equivalent to ggplot(data=diamonds, aes(carat, price, color="black")) + geom_point()

plot1

# setting
qplot(carat, price, data=diamonds, color=I("black"))
# equivalent to ggplot(data=diamonds, aes(carat, price), color="black") + geom_point()

plot2

您可以使用 scale_colour_manual 指定一组自己的映射。

关于r - ggplot 线条颜色 "black"变成红色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44067709/

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