ggplot2中的饼图,不同的部分分开

时间:2016-04-20 09:56:21

标签: r ggplot2

我正在尝试在ggplot2中制作一个饼图,如下图所示。馅饼的每个部分都是分开的。

enter image description here

现在我想用ggplot2来制作一个类似的数字。

a = c("cell","cell part","response to stimulus")
b = c('155','166','100')
tmp = as.data.frame(cbind(a,b))
ggplot(tmp2, aes(x=a,y=b, fill=a)) + geom_bar(stat='identity') + scale_fill_brewer(palette='Dark2') + coord_polar(start=0)

我得到的数字是这样的: enter image description here

每个部分的半径不相等。我希望有人能帮我找到如何使半径相等。

0 个答案:

没有答案