目标:我正在尝试将填充颜色添加到我的列购物车中。
当前尝试:备忘单中的方法显示了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")
那么,有什么想法吗?