library(ggplot2) # 基本長條圖 p <- ggplot(data = my.df, aes(x = type, y = value)) + geom_bar(stat = "identity") p 基本長條圖. 如果想要繪製橫向的長條圖,可以 ...
確定! 回上一頁