python - Plotly 多类别 X 轴排序

我正在尝试创建一个带日期的多类别 x 轴,下面的代码和图表为我提供了我想要的外观,但它只是乱序。我试过使用“原始 x 轴”列而不是月份,但格式显示不正确,我似乎无法更改它的格式。

import random
import numpy as np
import plotly.express as px

df = pd.DataFrame({"Year":np.repeat([2018,2019],[8,12]), 
              "Month": ["May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "Jan", "Feb", "Mar", "Apr","May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
             "Original x-axis": pd.date_range(start = "2018-05-01", end = "2019-12-01", freq = "MS"),
             "Customer Satisfaction Score": random.sample(range(30,100), 20)})


fig = go.Figure()

fig.add_trace(go.Scatter(
                        #x = cust["Original x-axis"], 
                        x = [df["Year"],df["Month"]],
                      y = df["Customer Satisfaction Score"], mode = "lines"))

fig.update_layout(plot_bgcolor = "white",
                 annotations = [dict(text = "Customer Satisfaction Score",
                                    yref = "paper",
                                    xref = "paper",
                                    x = 0,
                                    y = 1.1,
                                     font = dict(size = 16, color = "#909497"),
                                    showarrow = False)],
                 font = dict(size = 12, color = "#BDC3C7"))
                 #xaxis = dict(tickformat = "%b"))

fig.show()

最佳答案

请检查代码段。您需要根据 对日期时间列进行排序。

在这里我为此创建了一个额外的列。其余部分相同。

df['month'] = df['Original x-axis'].dt.strftime('%b-%Y')

import random
import numpy as np
import plotly.express as px
import pandas as pd
import plotly.offline as py
import plotly.graph_objs as go
df = pd.DataFrame({"Year":np.repeat([2018,2019],[8,12]), 
              "Month": ["May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "Jan", "Feb", "Mar", "Apr","May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
             "Original x-axis": pd.date_range(start = "2018-05-01", end = "2019-12-01", freq = "MS"),
             "Customer Satisfaction Score": random.sample(range(30,100), 20)})

df['month'] = df['Original x-axis'].dt.strftime('%b-%Y')
fig = go.Figure()

fig.add_trace(go.Scatter(
                        #x = cust["Original x-axis"], 
                        x = [df["Year"],df["month"]],
                      y = df["Customer Satisfaction Score"], mode = "lines"))

fig.update_layout(plot_bgcolor = "white",
                 annotations = [dict(text = "Customer Satisfaction Score",
                                    yref = "paper",
                                    xref = "paper",
                                    x = 0,
                                    y = 1.1,
                                     font = dict(size = 16, color = "#909497"),
                                    showarrow = False)],
                 font = dict(size = 12, color = "#BDC3C7"))
                 #xaxis = dict(tickformat = "%b"))

fig.show()

https://stackoverflow.com/questions/63772298/

相关文章:

python - "An error occurred initiating application

python - 在条件下填充 df 的行

c# - 如何使 flutter 应用程序的 http 获取请求到本地主机?

python - 将多个 swagger 文档(来自不同的应用程序)合并到一个 swagger 仪表

python - 是否有用于不同范数向量空间之间坐标转换的python算法?

python - 在 Web 应用中使用 SAML 实现 Azure AD 身份验证

html - 根据自身内容调整banner高度

docker - 如何删除 docker 代理设置?

html - 语法高亮器的可访问 HTML 结构

python - Python 中 + (pos) 一元运算符的用途是什么?