簡體   English   中英

更改條形ggplot2的顏色

[英]Change colour of bar ggplot2

我正在制作一條條形圖,嘗試使用此代碼更改條形的顏色,但它似乎不起作用。 問題是什么?

ggplot(hd.m, aes(provinces, value)) +  geom_bar(aes(fill="#0072B2"), position   = "dodge", stat="identity") + scale_fill_discrete(guide=FALSE) + xlab("Provinces and Territories") + ylab("Percentage(%)") + ggtitle("Heart Disease Prevelance across Canada in 2008-2009") + theme_bw() + theme(panel.border = element_blank()) + theme(
  plot.title = element_text(size=20),
  axis.title.x = element_text(size=14),      axis.title.y = element_text(size=14)) + geom_hline(yintercept=4.7)

在此處輸入圖片說明

從es中取出填充物。

library(ggplot2)
df <- data.frame(x = c("AB","BC","MB"), y = c(3.5,3.9,4.6))

# You have:
ggplot(df, aes(x,y)) + geom_bar(aes(fill="blue"), stat="identity")

# Try:
ggplot(df, aes(x,y)) + geom_bar(fill="blue", stat="identity")

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM