You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've got an online Jupyter notebook where I came across this error, but not sure how to fix and test this bug. I think it might be an easy fix:
/usr/local/lib/python3.9/dist-packages/plotly/express/_core.py:271: FutureWarning:
The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
Hi all,
I've got an online Jupyter notebook where I came across this error, but not sure how to fix and test this bug. I think it might be an easy fix:
Example code to reproduce the issue:
The code that needs to be changed can be found here, on line 271:
https://github.com/plotly/plotly.py/blob/master/packages/python/plotly/plotly/express/_core.py
I think the change will need to be:
trace_data = trace_data.append(trace_data.iloc[0])
totrace_data = pd.concat([trace_data, trace_data.iloc[0]])
The text was updated successfully, but these errors were encountered: