我正在使用 Google colab 在 python 中使用 plotly 生成图形和图表。我有 6,97,000 行数据存储在csv
我正在分析的文件中。我正在使用以下代码生成条形图,并且效果很好。
fig = px.bar(df, x='IP', y="Epid_ID")
fig.update_traces(marker=dict(line=dict(width=3,color='blue')))
fig.show()
现在,我想要一个显示累积数据的图表。以下是我的数据集的示例。
IP Epid_ID
05/08/2021 COV-NEP-PR4-LAM-21-01936
05/08/2021 COV-NEP-PR4-LAM-21-01937
06/08/2021 COV-NEP-PR4-LAM-21-01938
06/08/2021 COV-NEP-PR4-LAM-21-01939
07/08/2021 COV-NEP-PR4-LAM-21-01940
我的预期输出是显示累积数据的条形图。电流输出:
预期产出
我尝试使用以下链接使用 cumsum 。 https://www.codegrepper.com/code-examples/python/cumulative+chart+python+plotly
并尝试使用以下代码将 Date 变量保持为 x 。
x = df['IP']
y = df['Epid_ID']
cumsum = np.cumsum(x)
但是,当我使用此代码时,我的运行时崩溃。请帮忙!