plotly_ipywidget_notebooks
plotly_ipywidget_notebooks copied to clipboard
'FigureWidget' object has no attribute 'marker'
in the notebook '[Overview.ipynb]', there occurs an error. i don't know why? thank you!
and I found the code below works.
scatt1.update_traces(mode='markers') scatt1.update_traces(marker=dict(size=12))
and another error.
sorry, I am a Plotly beginner.
Hey, thanks for your answer.
Try the code below, if you haven't gotten it working already.
You need to do the .show() at the end or you get another error.
Hope that helps.
scatt1.update_traces(mode = 'markers',
marker = dict(size = 12)
).show()