├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── data ├── enrollment_forecast.csv ├── groceries.csv ├── iris.data.csv ├── mtcars.csv └── titanic-training-data.csv ├── notebooks ├── 02_01_b.ipynb ├── 02_01_e.ipynb ├── 02_02_b.ipynb ├── 02_02_e.ipynb ├── 02_03_b.ipynb ├── 02_03_e.ipynb ├── 02_04_b.ipynb ├── 02_04_e.ipynb ├── 02_05_b.ipynb ├── 02_05_e.ipynb ├── 02_06_b.ipynb ├── 02_06_e.ipynb ├── 02_07_b.ipynb ├── 02_07_e.ipynb ├── 02_08_b.ipynb ├── 02_08_e.ipynb ├── 02_09_b.ipynb ├── 02_09_e.ipynb ├── 02_10_b.ipynb ├── 02_10_e.ipynb ├── 03_01_b.ipynb ├── 03_01_e.ipynb ├── 03_02_b.ipynb ├── 03_02_e.ipynb ├── 03_03_b.ipynb ├── 03_03_e.ipynb ├── 04_01_b.ipynb ├── 04_01_e.ipynb ├── 04_02_b.ipynb ├── 04_02_e.ipynb ├── 05_01_b.ipynb ├── 05_01_e.ipynb ├── 05_02_b.ipynb ├── 05_02_e.ipynb ├── 05_04_b.ipynb ├── 05_04_e.ipynb ├── 05_05_b.ipynb ├── 05_05_e.ipynb ├── 05_06_b.ipynb ├── 05_07_b.ipynb ├── 05_07_e.ipynb ├── 06_01_b.ipynb ├── 06_01_e.ipynb ├── 06_02_b.ipynb ├── 06_02_e.ipynb ├── 06_03_b.ipynb ├── 06_03_e.ipynb ├── 07_04_b.ipynb └── 07_04_e.ipynb └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/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/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/README.md -------------------------------------------------------------------------------- /data/enrollment_forecast.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/data/enrollment_forecast.csv -------------------------------------------------------------------------------- /data/groceries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/data/groceries.csv -------------------------------------------------------------------------------- /data/iris.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/data/iris.data.csv -------------------------------------------------------------------------------- /data/mtcars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/data/mtcars.csv -------------------------------------------------------------------------------- /data/titanic-training-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/data/titanic-training-data.csv -------------------------------------------------------------------------------- /notebooks/02_01_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_01_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_01_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_01_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_02_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_02_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_02_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_02_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_03_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_03_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_03_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_03_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_04_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_04_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_04_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_04_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_05_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_05_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_05_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_05_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_06_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_06_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_06_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_06_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_07_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_07_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_07_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_07_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_08_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_08_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_08_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_08_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_09_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_09_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_09_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_09_e.ipynb -------------------------------------------------------------------------------- /notebooks/02_10_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_10_b.ipynb -------------------------------------------------------------------------------- /notebooks/02_10_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/02_10_e.ipynb -------------------------------------------------------------------------------- /notebooks/03_01_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/03_01_b.ipynb -------------------------------------------------------------------------------- /notebooks/03_01_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/03_01_e.ipynb -------------------------------------------------------------------------------- /notebooks/03_02_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/03_02_b.ipynb -------------------------------------------------------------------------------- /notebooks/03_02_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/03_02_e.ipynb -------------------------------------------------------------------------------- /notebooks/03_03_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/03_03_b.ipynb -------------------------------------------------------------------------------- /notebooks/03_03_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/03_03_e.ipynb -------------------------------------------------------------------------------- /notebooks/04_01_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/04_01_b.ipynb -------------------------------------------------------------------------------- /notebooks/04_01_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/04_01_e.ipynb -------------------------------------------------------------------------------- /notebooks/04_02_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/04_02_b.ipynb -------------------------------------------------------------------------------- /notebooks/04_02_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/04_02_e.ipynb -------------------------------------------------------------------------------- /notebooks/05_01_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_01_b.ipynb -------------------------------------------------------------------------------- /notebooks/05_01_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_01_e.ipynb -------------------------------------------------------------------------------- /notebooks/05_02_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_02_b.ipynb -------------------------------------------------------------------------------- /notebooks/05_02_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_02_e.ipynb -------------------------------------------------------------------------------- /notebooks/05_04_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_04_b.ipynb -------------------------------------------------------------------------------- /notebooks/05_04_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_04_e.ipynb -------------------------------------------------------------------------------- /notebooks/05_05_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_05_b.ipynb -------------------------------------------------------------------------------- /notebooks/05_05_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_05_e.ipynb -------------------------------------------------------------------------------- /notebooks/05_06_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_06_b.ipynb -------------------------------------------------------------------------------- /notebooks/05_07_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_07_b.ipynb -------------------------------------------------------------------------------- /notebooks/05_07_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/05_07_e.ipynb -------------------------------------------------------------------------------- /notebooks/06_01_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/06_01_b.ipynb -------------------------------------------------------------------------------- /notebooks/06_01_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/06_01_e.ipynb -------------------------------------------------------------------------------- /notebooks/06_02_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/06_02_b.ipynb -------------------------------------------------------------------------------- /notebooks/06_02_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/06_02_e.ipynb -------------------------------------------------------------------------------- /notebooks/06_03_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/06_03_b.ipynb -------------------------------------------------------------------------------- /notebooks/06_03_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/06_03_e.ipynb -------------------------------------------------------------------------------- /notebooks/07_04_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/07_04_b.ipynb -------------------------------------------------------------------------------- /notebooks/07_04_e.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/notebooks/07_04_e.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/python-for-data-science-and-machine-learning-essential-training-part-2-3016934/HEAD/requirements.txt --------------------------------------------------------------------------------