Skip to content

Commit

Permalink
differences for PR #647
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 19, 2023
1 parent 9308087 commit afbb915
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions 14-looping-data-sets.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ exercises: 10
import pandas as pd
for filename in ['data/gapminder_gdp_africa.csv', 'data/gapminder_gdp_asia.csv']:
data = pd.read_csv(filename, index_col='country')
print(filename, data.min())
print(filename, '\n', data.min())
```

```output
data/gapminder_gdp_africa.csv gdpPercap_1952 298.846212
data/gapminder_gdp_africa.csv
gdpPercap_1952 298.846212
gdpPercap_1957 335.997115
gdpPercap_1962 355.203227
gdpPercap_1967 412.977514
Expand All @@ -40,7 +41,8 @@ gdpPercap_1997 312.188423
gdpPercap_2002 241.165877
gdpPercap_2007 277.551859
dtype: float64
data/gapminder_gdp_asia.csv gdpPercap_1952 331
data/gapminder_gdp_asia.csv
gdpPercap_1952 331
gdpPercap_1957 350
gdpPercap_1962 388
gdpPercap_1967 349
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" "ff1bb5ec301422cf8a4cad6c6429bf4f" "site/built/11-lists.md" "2023-05-02"
"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" "906ff0cf1e420434dbe9c31a059fc57b" "site/built/14-looping-data-sets.md" "2023-05-19"
"episodes/15-coffee.md" "062bae79eb17ee57f183b21658a8d813" "site/built/15-coffee.md" "2023-05-02"
"episodes/16-writing-functions.md" "8433fd7580dad3d6f5e12c68b50e5686" "site/built/16-writing-functions.md" "2023-05-02"
"episodes/17-scope.md" "8109afb18f278a482083d867ad80da6e" "site/built/17-scope.md" "2023-05-02"
Expand Down

0 comments on commit afbb915

Please sign in to comment.