I want to get the statistical data that was produced to draw a box plot in Pandas(using data frame to make boxplots). for example Quartile1, Quartile2, Quartile3, lower whisker esteem, upper whisker value, and exceptions. I attempted the accompanying inquiry to draw the boxplot.
import pandas as pd
df = pd.DataFrame(np.random.rand(100, 5), columns=['A', 'B', 'C', 'D', 'E'])
pd.DataFrame.boxplot(df,return_type = 'both')
I just want to know a good way to calculate the value instead of manually?