1
問題:使用scale_y_continuous()時,將移除Y軸標籤。scale_y_continuous()上的強制Y標籤
例子:
dat <- data.frame(variable = c("A","B","C"),
value = c(0.5,0.25,0.25)
)
ggplot(dat, aes(variable, value)) +
geom_bar() +
scale_y_continuous("", formatter="percent") +
labs(y="Proportion",x="Type")
有沒有辦法迫使標籤使用scale_y_continuous時顯示()?
/拍打前額。我告訴它什麼也不做「」 –
嗯......是...... – Andrie