ggplot饼图标签

ggplot pie chart labeling

我正在努力使饼图标签正确。环顾四周,认为我可以轻松实现 mathematicalCoffee 所做的事情。到目前为止我有这个代码:

ltr = LETTERS[seq( from = 1, to = 26)]

wght = runif(length(ltr))
wght = wght/sum(wght)
wght = round(wght, digits = 2)

alloc = as.data.frame(cbind(ltr, wght))
alloc$wght = as.numeric(as.character(alloc$wght))

ggpie <- function (dat, by, totals) {
  ggplot(dat, aes_string(x=factor(1), y=totals, fill=by)) +
    geom_bar(stat='identity', color='black') +
    guides(fill=guide_legend(override.aes=list(colour=NA))) +
    coord_polar(theta='y') +
    theme(axis.ticks=element_blank(),
          axis.text.y=element_blank(),
          axis.text.x=element_text(colour='black'),
          axis.title=element_blank()) +
    ## scale_fill_brewer(palette = "GnBu") +
    scale_y_continuous(breaks=cumsum(dat[[totals]]) - dat[[totals]] / 2, labels=paste(dat[[by]], ":", dat[[totals]]))    
}

AA = ggpie(alloc, by = "ltr", totals = "wght") +
  ggtitle("Letter weights")

AA

生成的饼图:

有没有办法生成这样的东西,例如:

更新建议的 dup - 我认为该线程更多的是关于饼图的替代品以及为什么饼图不好。我想坚持使用饼图并想找到处理标签的解决方案 correctly/user-friendly.

对于饼图,plotly 比 ggplot 更容易工作。也许是这样的:

library(plotly)

p <- plot_ly(alloc, labels = ~ltr, values = ~wght, type = 'pie',textposition = 'outside',textinfo = 'label+percent') %>%
  layout(title = 'Letters',
         xaxis = list(showgrid = FALSE, zeroline = FALSE, showticklabels = FALSE),
         yaxis = list(showgrid = FALSE, zeroline = FALSE, showticklabels = FALSE))

我们可以让它与 ggplot2ggrepel 包一起使用。

很遗憾geom_text_repel()不支持position =参数,所以我们必须手动计算线的起始位置。

你的 data.frame:

alloc$pos = (cumsum(c(0, alloc$wght)) + c(alloc$wght / 2, .01))[1:nrow(alloc)]

这会计算每个组的平均点(或 obs,或你想称呼它的 whtvr)。

将其插入 geom_text_repely aes 中得到了不错的结果:

library(ggplot2)
library(ggrepel)
ggplot(alloc, aes(1, wght, fill = ltr)) +
    geom_col(color = 'black', 
             position = position_stack(reverse = TRUE), 
             show.legend = FALSE) +
    geom_text_repel(aes(x = 1.4, y = pos, label = ltr), 
                    nudge_x = .3, 
                    segment.size = .7, 
                    show.legend = FALSE) +
    coord_polar('y') +
    theme_void()

我做了一些选择,例如使用 text 而不是 label,删除了图例和坐标轴。随意更改它们