使用 plotly.express 折线图,线条以奇怪的顺序连接?怎么修?
Using plotly.express line chart, lines are connecting in weird order? How to fix?
有一个 df 数据,正在做:
fig=px.line(df, x='date', y='px', color='description')
下图呈现为附图。这是预期的行为吗?如何让点仅按时间顺序连接?
是的,这是在 plotly plots 中观察到的。
绘图前要求数据sorted
。
有一个 df 数据,正在做:
fig=px.line(df, x='date', y='px', color='description')
下图呈现为附图。这是预期的行为吗?如何让点仅按时间顺序连接?
是的,这是在 plotly plots 中观察到的。
绘图前要求数据sorted
。