slices=c(1,1295,5,496,11,458)
value=(slices/ sum(slices)*100)
value=round(value,digits=2)
value=sort(value,decreasing=F)
df2=data.frame(race=c("American Indian","Asian","Other","White","Hispanic","Black"),Count2=value)
ggplot(data=df2, aes(x="", y=Count2,fill = race)) +
geom_bar(stat="identity", width=1) +
coord_polar("y", start=0)+
theme_void() +
geom_label_repel(aes(label = value), size=5, show.legend = F, nudge_x = 1.6) +
guides(fill = guide_legend(title = "Races"))
When I plot this pie chart, we can see that blue label is not in the right position. How can I change this?
question from:
https://stackoverflow.com/questions/66050570/labels-pie-chart-ggplot-r 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…