Skip to content

Commit 3a9f27a

Browse files
committed
Update Docs to render cleanly & v0.1.9 release
Former-commit-id: a047a99
1 parent 58316d7 commit 3a9f27a

File tree

73 files changed

+3277
-526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+3277
-526
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ import pandas_alive
106106

107107
df = pandas_alive.load_dataset()
108108

109-
animated_line_chart = df.diff().fillna(0).plot_animated(kind='line',period_length=200)
109+
animated_line_chart = df.diff().fillna(0).plot_animated(kind='line',show_period_annotation-False)
110110

111-
animated_bar_chart = df.plot_animated(kind='barh',period_length=200,n_visible=10)
111+
animated_bar_chart = df.plot_animated(kind='barh',n_visible=10)
112112

113113
pandas_alive.animate_multiple_plots('example-bar-and-line-chart.gif',[animated_bar_chart,animated_line_chart]
114114
```
@@ -124,6 +124,7 @@ animated_line_chart = (
124124
urban_df.sum(axis=1)
125125
.pct_change()
126126
.dropna()
127+
.mul(100)
127128
.plot_animated(kind="line", title="Total % Change in Population",show_period_annotation=False)
128129
)
129130

0 commit comments

Comments
 (0)