R ggplot2畫餅狀圖

library(ggplot2) type <- c('A','B','C','D','E','F','G') nums <- c(10,23,8,33,12,40,60) df <- data.frame(type = type, nums = nums) #繪製條形圖 p <- ggplot(data = df, mapping = aes(x = 'Content', y = nums,
相關文章
相關標籤/搜索