我有数据框(df
),列为:asdfg
(字符)和NUMERIC
(数字)。
使用
ggplot(df, aes(x = asdfg, y = NUMERIC)) + geom_bar(stat = "identity", fill= "red")
我做了类似的事情:
现在我想获得条形图:
我不知道该怎么做。我尝试过使用scale_colour_gradient2
但它不起作用(可能我做错了)。
答案 0 :(得分:5)
喜欢这个吗?
# 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")