I have an R dataframe with 20 columns, one for each model. The lines of the dataset present the statistics for a boxplot. I want to plot a boxplot for each of those models, setting the parameters of the boxplot as the lines of the dataframe
Below is one example:
Model 1 Model 2 ... Model 20
min 1 5 15
q25 2 7 16
median 3 8 20
q75 4 9 21
max 5 10 22
As can be seeing, the statistics are already calculated. I just need to set them to the boxplot but I have no idea in how to do that