Firstly thank you for the amazing tool!
I am running the following script:
library(ggplot2)
library(dplyr)
library(data.table)
library(ggpie)
# Load your data
data <- fread("unexplained ESRF/table.txt")
ggnestedpie(data = data, group_key = c("Gene", "Class"), count_type = "full",
inner_label = T,inner_label_info = "all",
outer_label_info = "all", outer_label_pos = "out",)
and getting this plot:

I would like to have the class and gene in the actual label alongside the total count and percentage rather than have a separate key and do away with the key entirely. How would I achieve this?
Many thanks
Firstly thank you for the amazing tool!
I am running the following script:
and getting this plot:
I would like to have the class and gene in the actual label alongside the total count and percentage rather than have a separate key and do away with the key entirely. How would I achieve this?
Many thanks