如何使用Matplotlib在Pandas数据系列上绘制任意标记?
为了在Pandas数据系列上绘制任意标记,我们可以使用带有标记的 pyplot.plot() 方法。
步骤
- 设置图形大小并调整子图之间和周围的填充。
- 制作带有轴标签的Pandas数据系列(包括时间序列)。
- 使用 plot() 方法和 linestyle=”dotted” 来绘制系列索引。
- 使用 tick_params() 方法旋转重叠的标签。
- 使用 show() 方法来显示图形。
示例
import pandas as pd
from matplotlib import pyplot as plt
import numpy as np
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
ts = pd.Series(np.random.randn(10),
index=pd.date_range('2021-04-10', periods=10))
plt.plot(ts.index, ts, '*', ls='dotted', color='red')
plt.tick_params(rotation=45)
plt.show()