Problem in pandas

The link to code is - https://ide.codingblocks.com/s/242406 . What do 25%,50%,75% rows tell?

hey @abhaygarg2001 ,
These heads describe the distribution of values in your dataframe.
25 % tells the 25 quantile value of the data you have provided. SImilarly other two represent the 50th quantile and 75th quantile respectively.

you can use this formulae to calculate these values : *min+(max-min)percentile

I hope this would have resolved your doubt.
Happy Learning. :slight_smile: