Skip to content

Commit

Permalink
differences for PR #666
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 17, 2023
1 parent 6363d24 commit 2363e9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 14-looping-data-sets.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ for filename in glob.glob('data/gapminder_gdp*.csv'):
# retrieve the last string in the list that split returns (`<region>.csv`),
# and then remove the `.csv` extension from that string.
region = filename.split('_')[-1][:-4]
dataframe.mean().plot(ax=ax, label=region)
dataframe.mean(numeric_only=True).plot(ax=ax, label=region)
plt.legend()
plt.show()
```
Expand Down
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"episodes/11-lists.md" "1257daeb542377a3b04c6bec0d0ffee1" "site/built/11-lists.md" "2023-07-24"
"episodes/12-for-loops.md" "1da6e4e57a25f8d4fd64802c2eb682c4" "site/built/12-for-loops.md" "2023-05-02"
"episodes/13-conditionals.md" "fe461994d104541f60dc8e37822b487c" "site/built/13-conditionals.md" "2023-05-02"
"episodes/14-looping-data-sets.md" "e04f11544d1e5f3ca08ddcf22230a3a3" "site/built/14-looping-data-sets.md" "2023-05-02"
"episodes/14-looping-data-sets.md" "cb914031dbbfc5272b6d9b986e3323a2" "site/built/14-looping-data-sets.md" "2023-10-17"
"episodes/15-coffee.md" "062bae79eb17ee57f183b21658a8d813" "site/built/15-coffee.md" "2023-05-02"
"episodes/16-writing-functions.md" "0f162f45b0072659b0113baf01ade027" "site/built/16-writing-functions.md" "2023-07-24"
"episodes/17-scope.md" "8109afb18f278a482083d867ad80da6e" "site/built/17-scope.md" "2023-05-02"
Expand Down

0 comments on commit 2363e9e

Please sign in to comment.