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, fill = type)) + geom_bar(stat = 'identity', position = 'stack', width = 1)
p

label_value <- paste('(', round(df$nums/sum(df$nums) * 100, 1), '%)', sep = '')
label_value
label <- paste(df$type, label_value, sep = '')
label
p + coord_polar(theta = 'y') + labs(x = '', y = '', title = '') + theme(axis.text = element_blank()) + theme(axis.ticks = element_blank()) + theme(legend.position = "none") + geom_text(aes(y = df$nums/2 + c(0, cumsum(df$nums)[-length(df$nums)]), x = sum(df$nums)/150, label = label)) 

R ggplot2画饼状图_第1张图片

library(ggplot2)
#type <- c('A','B','C','D','E','F','G')
#nums <- c(10,23,8,33,12,40,60)
type <- c('1 HBase','2 Spark','3 Kylin','4 Data dev&analysis')
nums <- c(85,5,5,5)
df <- data.frame(type = type, nums = nums)

#绘制条形图
p <- ggplot(data = df, mapping = aes(x = 'Content', y = nums, fill = type)) + geom_bar(stat = 'identity', position = 'stack', width = 1)
p

label_value <- paste('(', round(df$nums/sum(df$nums) * 100, 1), '%)', sep = '')
label_value
label <- paste(df$type, label_value, sep = '')
label
p + coord_polar(theta = 'y') + labs(x = '', y = '', title = '') + theme(axis.text = element_blank()) + theme(axis.ticks = element_blank()) + scale_fill_discrete(labels = label)
R ggplot2画饼状图_第2张图片

你可能感兴趣的:(R)