在这里插入图片描述


#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author's_name_is_NIKOLA_SS

# 直方图---所有数据

from pandas import Series
import numpy as np
from matplotlib import pyplot as plt

from pylab import mpl

mpl.rcParams['font.sans-serif'] = ['FangSong'] # 指定‘仿宋’字体
hist_data = Series([2, 2, 4, 5, 2, 4, 3, 4, 6, 5])

# 自定义分组

mybins = [1, 3, 5, 7]

hist_data.plot(kind='hist', bins=mybins) # 横坐标是分组,纵坐标是频率

plt.title('频率分布图')
plt.show()
Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐