Skip to content

Commit dbce431

Browse files
committed
materials adapted
1 parent 3755104 commit dbce431

Some content is hidden

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

70 files changed

+43556
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

1_Introduction.ipynb

+1,066
Large diffs are not rendered by default.

2_Data_import_and_visualization.ipynb

+2,699
Large diffs are not rendered by default.

3_Pandas.ipynb

+4,260
Large diffs are not rendered by default.

4_Tidy_data.ipynb

+3,824
Large diffs are not rendered by default.

5_Groupby.ipynb

+1,645
Large diffs are not rendered by default.

6_Data_structures.ipynb

+1,800
Large diffs are not rendered by default.

7_Code.ipynb

+2,026
Large diffs are not rendered by default.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# crash_course_python
22
Crash course "Introduction to Python" -- AISSR September 2021
3+
4+
Materials adapted from my course [Working with data](https://github.com/jgarciab/wwd2019)
5+
6+
Time to fully complete it: ~12 hours

data/Fatality.csv

+337
Large diffs are not rendered by default.

data/alcohol.dta

5.83 KB
Binary file not shown.

data/ams_green.csv

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
METRO_ID,Metropolitan areas,Year,GREEN_AREA_PC
2+
NL002,Amsterdam,2000,235.63
3+
NL002,Amsterdam,2001,233.57
4+
NL002,Amsterdam,2002,231.51
5+
NL002,Amsterdam,2003,229.46
6+
NL002,Amsterdam,2004,227.41
7+
NL002,Amsterdam,2005,225.37
8+
NL002,Amsterdam,2006,223.33
9+
NL002,Amsterdam,2007,221.29
10+
NL002,Amsterdam,2008,219.26
11+
NL002,Amsterdam,2009,217.23
12+
NL002,Amsterdam,2010,215.21
13+
NL002,Amsterdam,2011,213.19
14+
NL002,Amsterdam,2012,211.18
15+
NL002,Amsterdam,2013,209.17
16+
NL002,Amsterdam,2014,207.16

data/ams_popdens.csv

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
METRO_ID,Metropolitan areas,Year,POP_DENS
2+
NL002,Amsterdam,2000,764.71
3+
NL002,Amsterdam,2001,771.45
4+
NL002,Amsterdam,2002,778.3
5+
NL002,Amsterdam,2003,785.26
6+
NL002,Amsterdam,2004,792.34
7+
NL002,Amsterdam,2005,799.53
8+
NL002,Amsterdam,2006,806.83
9+
NL002,Amsterdam,2007,814.25
10+
NL002,Amsterdam,2008,821.8
11+
NL002,Amsterdam,2009,829.47
12+
NL002,Amsterdam,2010,837.27
13+
NL002,Amsterdam,2011,845.19
14+
NL002,Amsterdam,2012,853.26
15+
NL002,Amsterdam,2013,861.45
16+
NL002,Amsterdam,2014,869.79

data/ams_twovariables.csv

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
METRO_ID,Metropolitan areas,Year,GREEN_AREA_PC,POP_DENS
2+
NL002,Amsterdam,2000,235.63,764.71
3+
NL002,Amsterdam,2001,233.57,771.45
4+
NL002,Amsterdam,2002,231.51,778.3
5+
NL002,Amsterdam,2003,229.46,785.26
6+
NL002,Amsterdam,2004,227.41,792.34
7+
NL002,Amsterdam,2005,225.37,799.53
8+
NL002,Amsterdam,2006,223.33,806.83
9+
NL002,Amsterdam,2007,221.29,814.25
10+
NL002,Amsterdam,2008,219.26,821.8
11+
NL002,Amsterdam,2009,217.23,829.47
12+
NL002,Amsterdam,2010,215.21,837.27
13+
NL002,Amsterdam,2011,213.19,845.19
14+
NL002,Amsterdam,2012,211.18,853.26
15+
NL002,Amsterdam,2013,209.17,861.45
16+
NL002,Amsterdam,2014,207.16,869.79

0 commit comments

Comments
 (0)