8000 fixing kwarg error · plotly/plotly.py-docs@01adb32 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 01adb32

Browse files
fixing kwarg error
1 parent 89e1943 commit 01adb32

File tree

1 file changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ import plotly.express as px
4545

4646
gapminder = px.data.gapminder()
4747

48-
fig = px.bar(gapminder, x="continent", y="pop", color="continent",
49-
animation_frame="year", animation_group="country", y_range=[0,4000000000])
48+
fig = px.bar(gapminder, x="continent", y="pop", color="continent",
49+
animation_frame="year", animation_group="country", range_y=[0,4000000000])
5050
fig.show()
5151
```
5252