在R中将条形图转换为饼图

Converting bar chart to pie chart in R

我有以下数据和代码:

dd
  grp categ condition value
1   A     X         P     2
2   B     X         P     5
3   A     Y         P     9
4   B     Y         P     6
5   A     X         Q     4
6   B     X         Q     5
7   A     Y         Q     8
8   B     Y         Q     2
> 
> 
dput(dd)
structure(list(grp = structure(c(1L, 2L, 1L, 2L, 1L, 2L, 1L, 
2L), .Label = c("A", "B"), class = "factor"), categ = structure(c(1L, 
1L, 2L, 2L, 1L, 1L, 2L, 2L), .Label = c("X", "Y"), class = "factor"), 
    condition = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L), .Label = c("P", 
    "Q"), class = "factor"), value = c(2, 5, 9, 6, 4, 5, 8, 2
    )), .Names = c("grp", "categ", "condition", "value"), out.attrs = structure(list(
    dim = structure(c(2L, 2L, 2L), .Names = c("grp", "categ", 
    "condition")), dimnames = structure(list(grp = c("grp=A", 
    "grp=B"), categ = c("categ=X", "categ=Y"), condition = c("condition=P", 
    "condition=Q")), .Names = c("grp", "categ", "condition"))), .Names = c("dim", 
"dimnames")), row.names = c(NA, -8L), class = "data.frame")


ggplot(dd, aes(grp,value, fill=condition))+geom_bar(stat='identity')+facet_grid(~categ)

如何将此条形图转换为饼图?我在这里想要 4 个馅饼,它们的大小对应于这里各个条的高度。我试过以下但它们没有用:

ggplot(dd, aes(grp,value, fill=condition))+geom_bar(stat='identity')+facet_grid(~categ)+coord_polar()
ggplot(dd, aes(grp,value, fill=condition))+geom_bar(stat='identity')+facet_grid(~categ)+coord_polar('y')

我也尝试制作类似于 Pie charts in ggplot2 with variable pie sizes 的饼图,但我无法使用我的数据进行管理。感谢您的帮助。

您希望组和类别都是网格的变量,而不是在任何图中。这里有两种不同的布局。 X 应该是任何单个项目、字符串或其他内容。

ggplot(dd, aes(x=factor(1),y=value,
 fill=condition))+geom_bar(stat='identity')+
 facet_grid(~grp+categ)+coord_polar("x")
ggplot(dd, aes(x=factor(1),y=value,
 fill=condition))+geom_bar(stat='identity')+
 facet_grid(grp~categ)+coord_polar("x")

这里打开顶部时发生了一些奇怪的事情,也许它只是我的界面。不过应该会让你走得足够远!

使用与您发布的 link 中相同的想法,您可以添加一列 size 做您的数据框,该列将是每个组的值的总和,并将其用作width 参数:

library(dplyr)
dd<-dd %>% group_by(categ,grp) %>% mutate(size=sum(value))
ggplot(dd, aes(x=size/2,y=value,fill=condition,width=size))+geom_bar(position="fill",stat='identity')+facet_grid(grp~categ)+coord_polar("y")