我想将比例颜色渐变应用于平滑线。 目前,下面的代码将颜色修复设置为红色。
library(ggplot2)
a <- data.frame(year = 1:100, values = sin(1:100)*1000 + runif(100))
ggplot(a, aes(x = year, y = values, color = values )) + geom_line(size = 2) +
scale_colour_gradient2(
low = "blue",
mid = "white" ,
high = "red",
midpoint = 10
)+
geom_smooth(
data = a,
aes(x = year, y = values),
color = "red",
size = 2
)
但是当我设置color = values
时,它无法正常工作。相反,它采用默认的蓝色。
geom_smooth(
data = a,
aes(x = year, y = values, color = values),
size = 2
)
提前致谢。
答案 0 :(得分:10)
使用geom_smooth(aes(color=..y..))
为geom_smooth
添加颜色审美。 ..y..
是geom_smooth
内部计算的y值向量,用于创建回归曲线。通常,当您想要将美学添加到内部计算的汇总值时,您需要将美学映射到该内部值。这里,内部值是平滑函数的..y..
值。在其他情况下,直方图或条形图可能为..count..
,密度图可能为..density..
。
以下是使用您的数据的示例。请注意,我已经调整了一些绘图参数以供说明。
set.seed(48)
a <- data.frame(year = 1:100, values = sin(1:100)*1000 + runif(100))
ggplot(a, aes(x = year, y = values, color = values )) +
geom_line(size = 0.5) +
geom_smooth(aes(color=..y..), size=1.5, se=FALSE) +
scale_colour_gradient2(low = "blue", mid = "yellow" , high = "red",
midpoint=10) +
theme_bw()
请注意,回归线的颜色变化不大,因为其y值相对于数据的范围较小。这是假数据的另一个例子,它可以生成更广泛的回归曲线。
set.seed(1938)
a2 <- data.frame(year = seq(0,100,length.out=1000), values = cumsum(rnorm(1000)))
ggplot(a2, aes(x = year, y = values, color = values )) +
geom_line(size = 0.5) +
geom_smooth(aes(color=..y..), size=1.5, se=FALSE) +
scale_colour_gradient2(low = "blue", mid = "yellow" , high = "red",
midpoint=median(a2$values)) +
theme_bw()