标签: python pandas
这是我的代码:
df["Created"] = pd.to_datetime(df["Created"]) df.groupby(df.Created.dt.weekday).size().plot(linewidth = 0.4, x_compat=True)
我想在图表上显示当天的名称,还希望在星期几之前以大熊猫开始?
答案 0 :(得分:0)
尝试使用dt.day_name代替工作日
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.dt.day_name.html#pandas-series-dt-day-name