We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following example in the "Radar chart" documentation page:
import plotly.express as px import pandas as pd df = pd.DataFrame(dict( r=[1, 5, 2, 2, 3], theta=['processing cost','mechanical properties','chemical stability', 'thermal stability', 'device integration'])) fig = px.line_polar(df, r='r', theta='theta', line_close=True) fig.show()
yields the following error:
AttributeError: 'DataFrame' object has no attribute 'append'. Did you mean: '_append'?
The reason for this issue is most likely due to the plotly.express component not abiding by the migration guidelines.
plotly.express
The text was updated successfully, but these errors were encountered:
Do you have the latest release, v5.15? This was fixed in #4190
Sorry, something went wrong.
That was it! I was on 5.14.1. Thank you for the quick response, @alexcjohnson !
Closing.
No branches or pull requests
The following example in the "Radar chart" documentation page:
yields the following error:
The reason for this issue is most likely due to the
plotly.express
component not abiding by the migration guidelines.The text was updated successfully, but these errors were encountered: