1 回答

TA貢獻(xiàn)2037條經(jīng)驗(yàn) 獲得超6個(gè)贊
您可以通過(guò)繪制過(guò)去幾周的回歸線來(lái)顯示趨勢(shì),可能與實(shí)際數(shù)據(jù)分開(kāi),因?yàn)樵搱D已經(jīng)如此擁擠。我會(huì)使用 seaborn,因?yàn)樗哂蟹奖愕膔egplot()功能:
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
df.plot(figsize=[12, 10], style='--')
plt.xlim(2, 18)
last4 = df[len(df)-4:]
plt.gca().set_prop_cycle(None)
for shop in df.columns:
sns.regplot(last4.index + 4, shop, data=last4, ci=None, scatter=False)
plt.ylabel(None)
plt.xticks(list(df.index)+[14, 17], labels=list(df.index)+[10, 13]);
添加回答
舉報(bào)