I want to create Boxplots , but I don't have the data itself and I have Min, Max, Q1, Q2 , Q3 instead . How can I do that in Python ?
Asked
Active
Viewed 36 times
0
-
```sns.boxplot(x=[min_, q1, q2, q3, max_])``` – Mustafa Aydın Feb 13 '21 at 09:06
-
See solution here: https://stackoverflow.com/a/60415825/2375421 Possibly dupe question. – Sylvansight Feb 13 '21 at 09:39