为gglot添加填充色

时间:2019-03-27 01:26:42

标签: r ggplot2

目标:我正在尝试将填充颜色添加到我的列购物车中。

当前尝试:备忘单中的方法显示了scale_fill_manual(values = c(“”,“”,“”))或scale_fill_brewer(palette =“ Greens”)函数。两种选择均无效。

library(ggplot2)
library(tidyverse)
library(RColorBrewer)
d <- ggplot(dataset3, aes(x = DropoffLocationName, y=Difference)) + geom_col() + theme_test() 
d + scale_fill_manual(values = c("Red","Orange","Yellow","Green","Blue","Purple"))  
d + scale_fill_brewer(palette = "Greens")

那么,有什么想法吗?

0 个答案:

没有答案