如何在折线图(Matplotlib)中绘制多个 Pandas 栏目于 Y 轴上?
要在折线图的 Y 轴上绘制多个 Pandas 栏目,我们可以使用 set_index() 方法来设置索引。
步骤
- 设置图形大小并调整子图之间和周围的填充。
- 使用类别 1、类别 2 和类别 3 栏目创建一个数据帧。
- 使用 set_index() 方法设置使用现有栏目的数据帧索引。
- 若要显示图形,请使用 show() 方法。
示例
import pandas as pd from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True df = pd.DataFrame({'Category 1': [2, 4, 5, 1, 0, 3], 'Category 2': [6, 3, 1, 4, 5, 2], 'Category 3': [2, 4, 1, 3, 6, 0]}) df.set_index('Category 1').plot() plt.show()
输出
广告