Box Plot - How to see it?

The box plot is subject to minor exceptions.
insert image description here
What do you think of the above picture?
In fact, the graph can be divided into5 parts

  1. maximum value
  2. 75%
  3. 50% on average
  4. 25%
  5. The minimum value is
    because the above data can only vaguely see the interval,
    we can get the specific value through the python code
print(df.describe()['TEMP'])

![Insert picture description here](https://img-blog.csdnimg.cn/125d7504d2644599b0fc0a9fac0921ff.png
With the specific value, we can easily understand the boxplot in reverse.
insert image description here
More usage of boxplot boxplot is here:
https://blog.csdn.net/weixin_40683253/article/details/87857194

Guess you like

Origin blog.csdn.net/qq_56402474/article/details/129593068