Here is my code for a simple chat I am trying to make.
import plotly.plotly as py
import plotly.graph_objs as go
trace = go.Scatter( x=df[âyearâ], y=df[ânAllNeonicâ].sum() )
data=[trace]
iplot(data)
For some reason itâs giving me this error.
AttributeError: module â_plotly_utils.basevalidatorsâ has no attribute > âDashValidatorâ
DashValidator is a new class that was added in version 3.2.0, so my first guess is that perhaps two difference versions of plotly.py are somehow installed.
Could you post the output of pip list and conda list?