gpt4 book ai didi

r - ggplot直方图颜色渐变

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

我试图在直方图中可视化来自 ggplot2 的钻石数据,其中显示克拉的分布。

我尝试将 aes 值从 ggplot 移动到 geom_histogram(),尝试 ..fill..,并以不同的方式操作代码,但结果是相同的。

histogram<- ggplot(diamonds, aes(x=carat, fill=carat)) +
geom_histogram(binwidth = 0.1) + scale_fill_gradient(low='blue', high='yellow')

随着克拉的增加,我希望看到我的直方图从蓝色变为黄色,但我仍然看到它是灰色的。

最佳答案

尝试使用fill=..x..:

ggplot(diamonds, aes(x=carat, fill=..x..)) +
geom_histogram(binwidth = 0.1) + scale_fill_gradient(low='blue', high='yellow')

histogram with color gradient

关于r - ggplot直方图颜色渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55446192/

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