在Matplotlib直方图函数中获取区间信息

在Matplotlib直方图函数中获取区间信息

要在matplotlib的直方图函数中获取区间信息,可以执行以下步骤 −

  • 创建 数据bins 的数字列表。

  • 使用 histogram() 方法计算一组数据的直方图。

  • 从直方图(步骤2)获取 histedges

  • 查找直方图中的频率。

  • 使用 bars (步骤1)和 freq (步骤4)数据制作条形图。

  • 使用 show() 方法显示图形。

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
a = [-0.125, .15, 8.75, 72.5, -44.245, 88.45]
bins = np.arange(-180, 181, 20)
hist, edges = np.histogram(a, bins)
freq = hist/float(hist.sum())
plt.bar(bins[:-1], freq, width=20, align="edge", ec="k", color='red')
plt.show()

输出

在Matplotlib直方图函数中获取区间信息

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程