如何将统计注释(星号或 p 值)插入到 Matplotlib 图表中?


要插入统计注释,我们可以采取以下步骤 -

  • 创建数字列表 (y)。

  • 使用 subplots() 方法,创建一个图形和一组子图。

  • 使用 plot() 方法,绘制包含日期且线型为 "-." 的数据。

  • 使用 annotate() 方法,使用 x 和 y 的平均值注释图中的一个点。

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

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(-1, 1, 5)
y = np.linspace(-2, 2, 5)
mean_x = np.mean(x)
mean_y = np.mean(y)
fig, ax = plt.subplots()
ax.plot(x, y, linestyle='-.')
ax.annotate('*', (mean_y, mean_y), xytext=(-.50, 1), arrowprops=dict(arrowstyle='-|>'))
fig.autofmt_xdate()
plt.show()

输出

更新时间: 2021 年 5 月 7 日

280 次查看

开启你的 职业生涯

完成本课程,获得认证

开始学习
广告