jmeihuang / sds192-mp2-1

Mini-project 2
1 stars 1 forks source link

Color issue? #2

Open jmeihuang opened 5 years ago

jmeihuang commented 5 years ago

For some reason my bar graph is turning out to be a gray color. Does anyone know how to fix this? `fill_c <- c("gray", "green")

ggplot(all_name, aes(x = transaction_type, y = total)) + geom_bar(stat = "identity") + scale_fill_manual(values = fill_c) + theme(legend.position = "none") + facet_wrap(~as.factor(cand_name))`

jmeihuang commented 5 years ago

I fixed it!