我有不同的公司,他們可能有不同數量的相關「措施」的數據。如果某項指標低於基準值,則應該爲我設定爲粉紅色的某種顏色着色。如果某項指標高於基準,則應該用藍色表示。問題是,不同的公司有不同的措施數量,這些措施可能會低於或高於基準;沒有模式。geom_bar的動態條件顏色ggplot
我在填充中使用這個條件,它有時會起作用。
ggplot(df, aes(measure)) + geom_col(aes(y=company, fill=overall > company)) + geom_point(aes(y=overall, color="overall"), size=8, shape=124) +
scale_color_manual("",values=c("company" = "yellow", "overall"="blue"),labels=c("company" = "Your Company", "overall"= "Overall Benchmark")) +
coord_flip()+ guides(size=FALSE) + theme(legend.box="horizontal",legend.key=element_blank(), legend.title=element_blank(),legend.position="top") +
scale_fill_manual(values=c("lightblue2", "lightpink2"),labels=c("Better","Worse"))
但是,例如,如果數據幀是這樣的,它是完全關閉:
df = data.frame(
measure = c("Measure A","Measure B","Measure C","Measure D"),
overall = c(9, 5, 11, 19),
company = c(4,3,7, 16)
)
如果數據幀是這樣的,它的罰款:
df2 = data.frame(
measure = c("Measure A","Measure B", "Measure C"),
overall = c(9, 5, 11),
company = c(11,7, 9)
)
我認爲這種方法並不能準確地爲酒吧上色,但我不確定爲什麼。
我沒意識到你可以在ggplot中改變數據。感謝您深入解釋爲什麼我所做的沒有奏效。 – PinkyL