Plotly 正在渲染多行

问题描述 投票:0回答:0

我得到一条趋势线,但问题是颜色和趋势线(设置为数据点的最大值),我得到多条线。我只想要整个数据集的一行。这是我的代码:

fig = px.scatter(df, "Date", y="Number", color="Technology", labels={
                     "Date": "Year",
                     "Number": "Number"
                 }, trendline="expanding", trendline_options=dict(function="max"))

python dataframe plotly
© www.soinside.com 2019 - 2024. All rights reserved.