├── .gitignore ├── README.md ├── chapter1.md ├── chapter2.md ├── chapter3.md ├── chapter4.md ├── course.yml ├── courses-introduction-to-python.Rproj ├── datasets ├── baseball.csv ├── fifa.csv └── references.md ├── img └── shield_image.png ├── intro-to-python-keynotes.zip ├── requirements.sh ├── scripts ├── chapter1_script.md ├── chapter2_script.md ├── chapter3_script.md └── chapter4_script.md └── slides ├── ch4_slides.pdf ├── chapter_1_433dcfcfedaee070cbf440491c402e3b.md ├── chapter_1_d8fcd4c930027fa4e1c3870c7e7e0ff1.md ├── chapter_2_355ed52d2fb0d67508c6a311b7cbc6d3.md ├── chapter_2_a0530c4542f10988847b2dbb91f717c3.md ├── chapter_2_fc15ba5cb9485456df8589130b519ea3.md ├── chapter_3_1204d914b0e53100529827e07441ee6c.md ├── chapter_3_8e387776f3a264a745128b68aa8d8f83.md ├── chapter_3_cedcfb34350be8545599768f96695cdd.md ├── chapter_4_34495ba457d74296794d2a122c9b6e19.md ├── chapter_4_a0487c26210f6b71ea98f917734cea3a.md ├── chapter_4_ae3238dcc7feb9adecfee0c395fc8dc8.md └── timings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/README.md -------------------------------------------------------------------------------- /chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/chapter1.md -------------------------------------------------------------------------------- /chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/chapter2.md -------------------------------------------------------------------------------- /chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/chapter3.md -------------------------------------------------------------------------------- /chapter4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/chapter4.md -------------------------------------------------------------------------------- /course.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/course.yml -------------------------------------------------------------------------------- /courses-introduction-to-python.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/courses-introduction-to-python.Rproj -------------------------------------------------------------------------------- /datasets/baseball.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/datasets/baseball.csv -------------------------------------------------------------------------------- /datasets/fifa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/datasets/fifa.csv -------------------------------------------------------------------------------- /datasets/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/datasets/references.md -------------------------------------------------------------------------------- /img/shield_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/img/shield_image.png -------------------------------------------------------------------------------- /intro-to-python-keynotes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/intro-to-python-keynotes.zip -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/requirements.sh -------------------------------------------------------------------------------- /scripts/chapter1_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/scripts/chapter1_script.md -------------------------------------------------------------------------------- /scripts/chapter2_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/scripts/chapter2_script.md -------------------------------------------------------------------------------- /scripts/chapter3_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/scripts/chapter3_script.md -------------------------------------------------------------------------------- /scripts/chapter4_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/scripts/chapter4_script.md -------------------------------------------------------------------------------- /slides/ch4_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/ch4_slides.pdf -------------------------------------------------------------------------------- /slides/chapter_1_433dcfcfedaee070cbf440491c402e3b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_1_433dcfcfedaee070cbf440491c402e3b.md -------------------------------------------------------------------------------- /slides/chapter_1_d8fcd4c930027fa4e1c3870c7e7e0ff1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_1_d8fcd4c930027fa4e1c3870c7e7e0ff1.md -------------------------------------------------------------------------------- /slides/chapter_2_355ed52d2fb0d67508c6a311b7cbc6d3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_2_355ed52d2fb0d67508c6a311b7cbc6d3.md -------------------------------------------------------------------------------- /slides/chapter_2_a0530c4542f10988847b2dbb91f717c3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_2_a0530c4542f10988847b2dbb91f717c3.md -------------------------------------------------------------------------------- /slides/chapter_2_fc15ba5cb9485456df8589130b519ea3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_2_fc15ba5cb9485456df8589130b519ea3.md -------------------------------------------------------------------------------- /slides/chapter_3_1204d914b0e53100529827e07441ee6c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_3_1204d914b0e53100529827e07441ee6c.md -------------------------------------------------------------------------------- /slides/chapter_3_8e387776f3a264a745128b68aa8d8f83.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_3_8e387776f3a264a745128b68aa8d8f83.md -------------------------------------------------------------------------------- /slides/chapter_3_cedcfb34350be8545599768f96695cdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_3_cedcfb34350be8545599768f96695cdd.md -------------------------------------------------------------------------------- /slides/chapter_4_34495ba457d74296794d2a122c9b6e19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_4_34495ba457d74296794d2a122c9b6e19.md -------------------------------------------------------------------------------- /slides/chapter_4_a0487c26210f6b71ea98f917734cea3a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_4_a0487c26210f6b71ea98f917734cea3a.md -------------------------------------------------------------------------------- /slides/chapter_4_ae3238dcc7feb9adecfee0c395fc8dc8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/chapter_4_ae3238dcc7feb9adecfee0c395fc8dc8.md -------------------------------------------------------------------------------- /slides/timings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacamp/courses-introduction-to-python/HEAD/slides/timings.json --------------------------------------------------------------------------------