Hello Jon,
I am using spyder and I followed your instructions.
in my terminal
conda install -c plotly plotly spyder
conda install -c plotly plotly-orca psutil
I imported the graph objects as follows
from plotly.offline import plot
import plotly.graph_objs as go
I get the following error when I try this code
fig = go.Figure([go.Scatter(x=combined[‘Date’], y=combined[‘confirmed’])])
TypeError: super(type, obj): obj must be an instance or subtype of type
Do you have any suggestions?