├── .editorconfig ├── .github └── workflows │ ├── README.md │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── pr-receive.yaml │ ├── sandpaper-main.yaml │ ├── sandpaper-version.txt │ ├── update-cache.yaml │ └── update-workflows.yaml ├── .gitignore ├── .zenodo.json ├── AUTHORS.md ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config.yaml ├── episodes ├── 01-introduction.md ├── 02-basics.md ├── 03-control-structures.md ├── 04-reusable.md ├── 05-processing-data-from-file.md ├── 06-date-and-time.md ├── 07-json.md ├── 08-Pandas.md ├── 09-extracting-data.md ├── 10-aggregations.md ├── 11-joins.md ├── 12-long-and-wide.md ├── 13-matplotlib.md ├── 14-sqlite.md ├── data │ ├── Newspapers.csv │ ├── Newspapers.txt │ ├── Q1.txt │ ├── Q6.txt │ ├── Q7.txt │ ├── SAFI.json │ ├── SAFI_clean.csv │ ├── SAFI_crops.csv │ ├── SAFI_full_shortname.csv │ ├── SAFI_grass_roof.csv │ ├── SAFI_grass_roof_burntbricks.csv │ ├── SAFI_grass_roof_muddaub.csv │ ├── SAFI_results.csv │ ├── SAFI_results_anon.csv │ ├── SN7577.sqlite │ ├── SN7577.tab │ ├── SN7577i_a.csv │ ├── SN7577i_aa.csv │ ├── SN7577i_b.csv │ ├── SN7577i_bb.csv │ ├── SN7577i_c.csv │ └── SN7577i_d.csv └── fig │ ├── Python_date_format_01.png │ ├── Python_function_parameters_9.png │ ├── Python_install_1.png │ ├── Python_install_2.png │ ├── Python_jupyter_6.png │ ├── Python_jupyter_7.png │ ├── Python_jupyter_8.png │ ├── Python_jupyterl_6.png │ ├── Python_repl_3.png │ ├── Python_repl_4.png │ ├── Python_repl_5.png │ ├── Python_repll_3.png │ ├── barplot1.png │ ├── boxplot1.png │ ├── boxplot2.png │ ├── boxplot3.png │ ├── functionAnatomy.png │ ├── histogram1.png │ ├── histogram3.png │ ├── lm1.png │ ├── pandas_join_types.png │ ├── scatter1.png │ └── scatter2.png ├── index.md ├── instructors └── instructor-notes.md ├── learners ├── discuss.md ├── reference.md └── setup.md ├── profiles └── learner-profiles.md └── site └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/sandpaper-main.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-version.txt: -------------------------------------------------------------------------------- 1 | 0.17.1 2 | -------------------------------------------------------------------------------- /.github/workflows/update-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- 1 | FIXME: describe how to cite this lesson. 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/01-introduction.md -------------------------------------------------------------------------------- /episodes/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/02-basics.md -------------------------------------------------------------------------------- /episodes/03-control-structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/03-control-structures.md -------------------------------------------------------------------------------- /episodes/04-reusable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/04-reusable.md -------------------------------------------------------------------------------- /episodes/05-processing-data-from-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/05-processing-data-from-file.md -------------------------------------------------------------------------------- /episodes/06-date-and-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/06-date-and-time.md -------------------------------------------------------------------------------- /episodes/07-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/07-json.md -------------------------------------------------------------------------------- /episodes/08-Pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/08-Pandas.md -------------------------------------------------------------------------------- /episodes/09-extracting-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/09-extracting-data.md -------------------------------------------------------------------------------- /episodes/10-aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/10-aggregations.md -------------------------------------------------------------------------------- /episodes/11-joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/11-joins.md -------------------------------------------------------------------------------- /episodes/12-long-and-wide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/12-long-and-wide.md -------------------------------------------------------------------------------- /episodes/13-matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/13-matplotlib.md -------------------------------------------------------------------------------- /episodes/14-sqlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/14-sqlite.md -------------------------------------------------------------------------------- /episodes/data/Newspapers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/Newspapers.csv -------------------------------------------------------------------------------- /episodes/data/Newspapers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/Newspapers.txt -------------------------------------------------------------------------------- /episodes/data/Q1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/Q1.txt -------------------------------------------------------------------------------- /episodes/data/Q6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/Q6.txt -------------------------------------------------------------------------------- /episodes/data/Q7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/Q7.txt -------------------------------------------------------------------------------- /episodes/data/SAFI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI.json -------------------------------------------------------------------------------- /episodes/data/SAFI_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_clean.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_crops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_crops.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_full_shortname.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_full_shortname.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_grass_roof.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_grass_roof.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_grass_roof_burntbricks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_grass_roof_burntbricks.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_grass_roof_muddaub.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_grass_roof_muddaub.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_results.csv -------------------------------------------------------------------------------- /episodes/data/SAFI_results_anon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SAFI_results_anon.csv -------------------------------------------------------------------------------- /episodes/data/SN7577.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577.sqlite -------------------------------------------------------------------------------- /episodes/data/SN7577.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577.tab -------------------------------------------------------------------------------- /episodes/data/SN7577i_a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577i_a.csv -------------------------------------------------------------------------------- /episodes/data/SN7577i_aa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577i_aa.csv -------------------------------------------------------------------------------- /episodes/data/SN7577i_b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577i_b.csv -------------------------------------------------------------------------------- /episodes/data/SN7577i_bb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577i_bb.csv -------------------------------------------------------------------------------- /episodes/data/SN7577i_c.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577i_c.csv -------------------------------------------------------------------------------- /episodes/data/SN7577i_d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/data/SN7577i_d.csv -------------------------------------------------------------------------------- /episodes/fig/Python_date_format_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_date_format_01.png -------------------------------------------------------------------------------- /episodes/fig/Python_function_parameters_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_function_parameters_9.png -------------------------------------------------------------------------------- /episodes/fig/Python_install_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_install_1.png -------------------------------------------------------------------------------- /episodes/fig/Python_install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_install_2.png -------------------------------------------------------------------------------- /episodes/fig/Python_jupyter_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_jupyter_6.png -------------------------------------------------------------------------------- /episodes/fig/Python_jupyter_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_jupyter_7.png -------------------------------------------------------------------------------- /episodes/fig/Python_jupyter_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_jupyter_8.png -------------------------------------------------------------------------------- /episodes/fig/Python_jupyterl_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_jupyterl_6.png -------------------------------------------------------------------------------- /episodes/fig/Python_repl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_repl_3.png -------------------------------------------------------------------------------- /episodes/fig/Python_repl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_repl_4.png -------------------------------------------------------------------------------- /episodes/fig/Python_repl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_repl_5.png -------------------------------------------------------------------------------- /episodes/fig/Python_repll_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/Python_repll_3.png -------------------------------------------------------------------------------- /episodes/fig/barplot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/barplot1.png -------------------------------------------------------------------------------- /episodes/fig/boxplot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/boxplot1.png -------------------------------------------------------------------------------- /episodes/fig/boxplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/boxplot2.png -------------------------------------------------------------------------------- /episodes/fig/boxplot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/boxplot3.png -------------------------------------------------------------------------------- /episodes/fig/functionAnatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/functionAnatomy.png -------------------------------------------------------------------------------- /episodes/fig/histogram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/histogram1.png -------------------------------------------------------------------------------- /episodes/fig/histogram3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/histogram3.png -------------------------------------------------------------------------------- /episodes/fig/lm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/lm1.png -------------------------------------------------------------------------------- /episodes/fig/pandas_join_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/pandas_join_types.png -------------------------------------------------------------------------------- /episodes/fig/scatter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/scatter1.png -------------------------------------------------------------------------------- /episodes/fig/scatter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/episodes/fig/scatter2.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/discuss.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Discussion 3 | --- 4 | 5 | FIXME 6 | 7 | 8 | -------------------------------------------------------------------------------- /learners/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/learners/reference.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/learners/setup.md -------------------------------------------------------------------------------- /profiles/learner-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/profiles/learner-profiles.md -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/python-socialsci/HEAD/site/README.md --------------------------------------------------------------------------------