python画数据分布图
快速统计数据区间分布情况
·
给出1万个分数,每个分数的分值在0到100的范围内,求画出每个分值段区间的分数数量:
job_name | score |
aaaaaa | 26.91449 |
aaaaaa1 | 34.850028 |
abtest3053 | 45.206069 |
abtest_2974 | 27.276368 |
abtest_nogame_2 | 24.180957 |
…… | …… |
直接用 matplotlib.pyplot 包的hist方法,限定分桶统计区间数量:
import matplotlib.pyplot as plt
import pandas as pd
data = pd.read_csv("/Users/shareit./Desktop/score.csv")
plt.hist(data['score'],bins=10,color='pink',edgecolor='b')
plt.show()
结果图:
更多推荐
已为社区贡献3条内容
所有评论(0)