数据: 叠加区域图 代码: # KIRIN # 2021-1-5 # 18:41 # 叠加折线图 import pandas as pd import matplotlib.pyplot as plt csv = pd.read_csv("data/26_.csv") print(csv.columns) csv.plot.area(y=['id', 'from', 'a', 'b'], color=['red', 'blue', 'yellow','brown']) plt.title('It\'s a title', fontsize=16, fontweight='...