seaborn:如何在X轴上添加第二级标签

时间:2019-05-15 16:20:09

标签: python matplotlib time-series seaborn

我需要绘制一个时间序列。 X轴上的日期和Y轴上的值,但我还需要在X轴上指定星期几。

ax = sns.lineplot(x='date', y='value', data=df)

我希望能够在X轴上添加星期几(df的另一列)。 example with Excel

1 个答案:

答案 0 :(得分:0)

您可以尝试通过添加第二个x轴来做到这一点。请在下面找到您需要用来适应问题的代码。我想有更好的方法可以做到这一点,但是应该可以。

<head>

此代码生成的图像在这里:https://i.stack.imgur.com/lniqG.png