gpt4 book ai didi

r - 如何在条形图上添加渐变填充?

转载 作者:行者123 更新时间:2023-12-02 01:02:32 25 4
gpt4 key购买 nike

我有数据框 (df),列为:asdfg(字符)和 NUMERIC(数字)。

使用

ggplot(df, aes(x = asdfg, y = NUMERIC)) + geom_bar(stat = "identity", fill= "red")

我做了类似的东西:

enter image description here

现在我想得到像这样的条形图:

enter image description here

我不知道该怎么做。我试过使用 scale_colour_gradient2 但它不起作用(可能我做错了)。

最佳答案

像这样?

# generate sample data - you have this already
set.seed(1) # for reproducible example
df <- data.frame(asdfg=unlist(strsplit("asdfg","")),NUMERIC=sample(1:5,5))

# you start here..
library(ggplot2)
ggplot(df, aes(x = asdfg, y = NUMERIC, fill=NUMERIC)) +
geom_bar(stat = "identity")+
scale_fill_gradient(low="#FF8888",high="#FF0000")

关于r - 如何在条形图上添加渐变填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26853005/

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