Home > Enterprise >  How can I increase canvas size or plot area so that it does not crop labels in ggpubr::ggpie?
How can I increase canvas size or plot area so that it does not crop labels in ggpubr::ggpie?

Time:12-15

I have the same problem as raised in enter image description here

Alternatively, as @rawr mentions below, you can replicate the coord_polar() call to get the same results, just make sure you specify theta = "y".

ggpie(df, "value", label = "group")  
  coord_polar(theta = "y", clip = "off")
  • Related