I have calculated medians, lower/upper quartiles, minimum and maximum values as part of a separate application of mine and written those values to a file and I would like to construct boxplots using these specific values.
Is there a way using matplotlib (or seaborn) to manually specify each of these values instead of providing an array of data (I don't need outliers)? I've tried looking through the documentation and I haven't found anything particularly relevant, but I may have overlooked something.
Something like:
plt.boxplot(median=median_val, quartiles=(lower, upper), range=(min, max))
would be ideal. I'm also open to any web solutions too.