Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用ggplot2,我想在我只有很少数据点的图中“平滑”地着色线。照原样,我尝试过的比例(例如scale_color_gradient2)似乎没有插入颜色,而是单色的颜色段。
ggplot2
scale_color_gradient2
代码示例:
ggplot(data.frame(x=1:5)) + geom_line(aes(x=x, y=x, color=x), size=3) + scale_color_gradient2()
您可以增加 1 到 5 之间的点数:
df <- data.frame(x=seq(1,5,0.001)) ggplot(df) + geom_line(aes(x=x, y=x, color=x), size=3) + scale_color_gradient2()