从 Pandas 数据框绘制时注释数据点


要在从 Pandas 数据框绘制时注释数据点,我们可以执行以下步骤 -

  • 使用 DataFrame 创建 df,其带有 x、y 和索引键。

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

  • 使用plot() 方法、kind='scatter'ax=axc='red'marker='x' 绘制一系列数据框。

  • 要使用索引值注释散点,请迭代数据框。

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

示例

import numpy as np
import pandas as pd
from matplotlib import pyplot as plt
import string
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pd.DataFrame({'x': np.random.rand(10), 'y': np.random.rand(10)}, index=list(string.ascii_lowercase[:10]))
fig, ax = plt.subplots()
df.plot('x', 'y', kind='scatter', ax=ax, c='red', marker='x')
for k, v in df.iterrows():
   ax.annotate(k, v)
plt.show()

输出

更新于:2021 年 5 月 7 日

3K+ 阅读次数

开启您的 职业生涯

通过完成课程获得认证

开始
广告