I have following pandas dataframe. How can I access subcolumns of this dataframe and plot them (eg. plotting distribution of min values using boxplot)
I am using following python statement but I am not getting the output.
df.boxplot(column=['score']['min'])
