Hello, trying to use plotly to plot this simple dataframe (dfplot):
index Strat1
237 2022-11-29 -0.159187
238 2022-11-30 3.094787
239 2022-12-01 -0.086763
240 2022-12-02 -0.000000
241 2022-12-05 -0.000000
Using this code:
import plotly.express as px
fig = px.line(dfplot, x="Date", y="Daily Return", title='Daily Return Historical Chart')
fig.show()
But I get the error:
AttributeError: module 'dask.array' has no attribute 'lib'
AttributeError Traceback (most recent call last)
/tmp/ipykernel_200/32131141.py in <module>
----> 1 import plotly.express as px
Is there any dependencies not working properly ?