In the example from here Plotly express arguments in Python
there is only one line for data import: wide_df = px.data.medals_wide()
I tried and get this Traceback: AttributeError: module ‘plotly.express.data’ has no attribute ‘medals_wide’
I just tried this code:
for name in dir(px.data):
if '__' not in name:
print(name)
absolute_import carshare election election_geojson gapminder iris tips wind
based on the result I miss a few data including the medals one, then I tried to re-install Plotly and Plotly Express under Anaconda Prompt but the problem persists
Successfully installed plotly-express-0.4.1
Thanks