ggpubr icon indicating copy to clipboard operation
ggpubr copied to clipboard

Remove whitespace around pie chart

Open wenbostar opened this issue 3 years ago • 0 comments

Is that possible to add a parameter in ggpie to control removing whitespace around pie chart?

df <- data.frame(
    group = c("Male", "Female", "Child"),
    value = c(25, 25, 50))

head(df)


# Basic pie charts
# ++++++++++++++++++++++++++++++++

ggpie(df, "value", label = "group")

image

wenbostar avatar Dec 09 '21 17:12 wenbostar