├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── code ├── chaper_01_video_01.py ├── chapter_01_video_02.py ├── chapter_01_video_03.py ├── chapter_01_video_04.py ├── chapter_01_video_05.py ├── chapter_02_video_01.py ├── chapter_02_video_02.py ├── chapter_02_video_03.py ├── chapter_02_video_04.py ├── chapter_02_video_05.py ├── chapter_02_video_06.py ├── chapter_03_video_01.py ├── chapter_03_video_02.py ├── chapter_03_video_03.py ├── chapter_03_video_04.py └── chapter_03_video_05.py └── data └── level_up_data.csv /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/README.md -------------------------------------------------------------------------------- /code/chaper_01_video_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chaper_01_video_01.py -------------------------------------------------------------------------------- /code/chapter_01_video_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_01_video_02.py -------------------------------------------------------------------------------- /code/chapter_01_video_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_01_video_03.py -------------------------------------------------------------------------------- /code/chapter_01_video_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_01_video_04.py -------------------------------------------------------------------------------- /code/chapter_01_video_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_01_video_05.py -------------------------------------------------------------------------------- /code/chapter_02_video_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_02_video_01.py -------------------------------------------------------------------------------- /code/chapter_02_video_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_02_video_02.py -------------------------------------------------------------------------------- /code/chapter_02_video_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_02_video_03.py -------------------------------------------------------------------------------- /code/chapter_02_video_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_02_video_04.py -------------------------------------------------------------------------------- /code/chapter_02_video_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_02_video_05.py -------------------------------------------------------------------------------- /code/chapter_02_video_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_02_video_06.py -------------------------------------------------------------------------------- /code/chapter_03_video_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_03_video_01.py -------------------------------------------------------------------------------- /code/chapter_03_video_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_03_video_02.py -------------------------------------------------------------------------------- /code/chapter_03_video_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_03_video_03.py -------------------------------------------------------------------------------- /code/chapter_03_video_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_03_video_04.py -------------------------------------------------------------------------------- /code/chapter_03_video_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/code/chapter_03_video_05.py -------------------------------------------------------------------------------- /data/level_up_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-data-acquisitions-prep-EDA-3083218/HEAD/data/level_up_data.csv --------------------------------------------------------------------------------