I would like to create a boxplot with ggplot in R, but I have some problems. I know how to create in general a boxplot. For example like this:
p <- ggplot(data, aes(y=number, x=pod)) + geom_boxplot()
print(p)
However, in my case I have only the mean (0,892), median (0,863 +-0,0858) and the range (0,621-1,132). I am not sure how to create a boxplot if I do not have all the values. Is it possible to create a boxplot with just these three parameters? Can anyone help me? Thank you very much. Best regards, Hannah