Firstly, apologies if this is a silly question, this is my first time using plotly. I am trying to make a sunburst diagram using my 'actor' dataframe, but I get an attribute error when I attempt to do so:
Error:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-32-2e5f13ef3c16> in <module>
----> 1 px.data.actor
AttributeError: module 'plotly.express.data' has no attribute 'actor'
Screenshot:
I have the following packages imported at the top:
import plotly.graph_objects as go
import plotly.io as pio
import plotly.express as px
Can anyone see where I'm going wrong? Thanks in advance!