給定繪圖使用ggplot2繪製生成條形圖。我想用ggplotly(p)創建一個類似的水平barplot。嘗試使用geom_bar()中的屬性coord_flip(),但沒有幫助。請幫助我,謝謝。使用ggplot2繪製水平條形圖並繪製
library(plotly)
dat <- data.frame(
time = factor(c("Lunch","Dinner"), levels=c("Lunch","Dinner")),
total_bill = c(14.89, 17.23))
p <- ggplot(data=dat, aes(x=time, y=total_bill)) +
geom_bar(stat="identity")
p <- ggplotly(p)
[水平Barplot的可能的複製在ggplot2](https://stackoverflow.com/questions/10941225/horizontal-barplot-in-ggplot2) –
嘿謝謝你的回覆,但這不是一個重複的,因爲它涉及ggplot2和情節,使情節互動 –