├── .github └── workflows │ └── test.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data ├── airlines.csv ├── airports.csv ├── ames.csv ├── boston.csv ├── cars.csv ├── cars_model.csv ├── companies.csv ├── flights.csv ├── planes.csv ├── prices.csv └── weather.csv ├── environment.yml ├── notebooks ├── 00-Introduction.ipynb ├── 01-Setting_the_Stage.ipynb ├── 02-Conditionals.ipynb ├── 03-Iteration.ipynb ├── 04-Functions.ipynb ├── 05-Applying_Functions_to_DataFrames.ipynb ├── 06-Python_from_the_Shell.ipynb ├── 07-Kernels_and_Environments.ipynb ├── 08-Python_Data_Sci_Ecosystem.ipynb ├── 09-Modeling.ipynb ├── 99-Closing.ipynb ├── Case Study Solutions.ipynb ├── Case Study.ipynb ├── images │ ├── applied-data-science.gif │ ├── brad.jpg │ ├── buckle-up.gif │ ├── change_kernel.png │ ├── conda_activate_uc_python.png │ ├── conda_env_list_base.png │ ├── conda_env_list_uc_python.png │ ├── conditionals-execution-path.png │ ├── conditionals-path.png │ ├── data-science-and-tech.png │ ├── data-science.png │ ├── dataframe-series.png │ ├── download_as_py.png │ ├── environments.png │ ├── ethan.jpg │ ├── fork-in-the-road.gif │ ├── fortune-teller.gif │ ├── gus.jpg │ ├── infinite-face-palm.gif │ ├── ipython.png │ ├── iteration-execution-path-2.png │ ├── iteration-execution-path-3.png │ ├── iteration-execution-path.png │ ├── jakevdp_ecosystem.jpg │ ├── jay.jpg │ ├── new_kernel.png │ ├── new_terminal.png │ ├── new_text_file_jupyter.png │ ├── non-vectorized.png │ ├── paco_nathan_ecosystem.png │ ├── shell_csi.png │ ├── shell_dark.png │ ├── shell_light.png │ ├── shell_ls.png │ ├── supervised-learning-spec.png │ ├── train-test-split.png │ └── vectorized.png └── rise.css └── scripts ├── generate_slides.sh ├── prep_nb_for_ci.py └── slide_prep.py /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/README.md -------------------------------------------------------------------------------- /data/airlines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/airlines.csv -------------------------------------------------------------------------------- /data/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/airports.csv -------------------------------------------------------------------------------- /data/ames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/ames.csv -------------------------------------------------------------------------------- /data/boston.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/boston.csv -------------------------------------------------------------------------------- /data/cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/cars.csv -------------------------------------------------------------------------------- /data/cars_model.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/cars_model.csv -------------------------------------------------------------------------------- /data/companies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/companies.csv -------------------------------------------------------------------------------- /data/flights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/flights.csv -------------------------------------------------------------------------------- /data/planes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/planes.csv -------------------------------------------------------------------------------- /data/prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/prices.csv -------------------------------------------------------------------------------- /data/weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/data/weather.csv -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/01-Setting_the_Stage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/01-Setting_the_Stage.ipynb -------------------------------------------------------------------------------- /notebooks/02-Conditionals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/02-Conditionals.ipynb -------------------------------------------------------------------------------- /notebooks/03-Iteration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/03-Iteration.ipynb -------------------------------------------------------------------------------- /notebooks/04-Functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/04-Functions.ipynb -------------------------------------------------------------------------------- /notebooks/05-Applying_Functions_to_DataFrames.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/05-Applying_Functions_to_DataFrames.ipynb -------------------------------------------------------------------------------- /notebooks/06-Python_from_the_Shell.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/06-Python_from_the_Shell.ipynb -------------------------------------------------------------------------------- /notebooks/07-Kernels_and_Environments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/07-Kernels_and_Environments.ipynb -------------------------------------------------------------------------------- /notebooks/08-Python_Data_Sci_Ecosystem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/08-Python_Data_Sci_Ecosystem.ipynb -------------------------------------------------------------------------------- /notebooks/09-Modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/09-Modeling.ipynb -------------------------------------------------------------------------------- /notebooks/99-Closing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/99-Closing.ipynb -------------------------------------------------------------------------------- /notebooks/Case Study Solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/Case Study Solutions.ipynb -------------------------------------------------------------------------------- /notebooks/Case Study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/Case Study.ipynb -------------------------------------------------------------------------------- /notebooks/images/applied-data-science.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/applied-data-science.gif -------------------------------------------------------------------------------- /notebooks/images/brad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/brad.jpg -------------------------------------------------------------------------------- /notebooks/images/buckle-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/buckle-up.gif -------------------------------------------------------------------------------- /notebooks/images/change_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/change_kernel.png -------------------------------------------------------------------------------- /notebooks/images/conda_activate_uc_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/conda_activate_uc_python.png -------------------------------------------------------------------------------- /notebooks/images/conda_env_list_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/conda_env_list_base.png -------------------------------------------------------------------------------- /notebooks/images/conda_env_list_uc_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/conda_env_list_uc_python.png -------------------------------------------------------------------------------- /notebooks/images/conditionals-execution-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/conditionals-execution-path.png -------------------------------------------------------------------------------- /notebooks/images/conditionals-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/conditionals-path.png -------------------------------------------------------------------------------- /notebooks/images/data-science-and-tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/data-science-and-tech.png -------------------------------------------------------------------------------- /notebooks/images/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/data-science.png -------------------------------------------------------------------------------- /notebooks/images/dataframe-series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/dataframe-series.png -------------------------------------------------------------------------------- /notebooks/images/download_as_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/download_as_py.png -------------------------------------------------------------------------------- /notebooks/images/environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/environments.png -------------------------------------------------------------------------------- /notebooks/images/ethan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/ethan.jpg -------------------------------------------------------------------------------- /notebooks/images/fork-in-the-road.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/fork-in-the-road.gif -------------------------------------------------------------------------------- /notebooks/images/fortune-teller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/fortune-teller.gif -------------------------------------------------------------------------------- /notebooks/images/gus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/gus.jpg -------------------------------------------------------------------------------- /notebooks/images/infinite-face-palm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/infinite-face-palm.gif -------------------------------------------------------------------------------- /notebooks/images/ipython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/ipython.png -------------------------------------------------------------------------------- /notebooks/images/iteration-execution-path-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/iteration-execution-path-2.png -------------------------------------------------------------------------------- /notebooks/images/iteration-execution-path-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/iteration-execution-path-3.png -------------------------------------------------------------------------------- /notebooks/images/iteration-execution-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/iteration-execution-path.png -------------------------------------------------------------------------------- /notebooks/images/jakevdp_ecosystem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/jakevdp_ecosystem.jpg -------------------------------------------------------------------------------- /notebooks/images/jay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/jay.jpg -------------------------------------------------------------------------------- /notebooks/images/new_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/new_kernel.png -------------------------------------------------------------------------------- /notebooks/images/new_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/new_terminal.png -------------------------------------------------------------------------------- /notebooks/images/new_text_file_jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/new_text_file_jupyter.png -------------------------------------------------------------------------------- /notebooks/images/non-vectorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/non-vectorized.png -------------------------------------------------------------------------------- /notebooks/images/paco_nathan_ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/paco_nathan_ecosystem.png -------------------------------------------------------------------------------- /notebooks/images/shell_csi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/shell_csi.png -------------------------------------------------------------------------------- /notebooks/images/shell_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/shell_dark.png -------------------------------------------------------------------------------- /notebooks/images/shell_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/shell_light.png -------------------------------------------------------------------------------- /notebooks/images/shell_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/shell_ls.png -------------------------------------------------------------------------------- /notebooks/images/supervised-learning-spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/supervised-learning-spec.png -------------------------------------------------------------------------------- /notebooks/images/train-test-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/train-test-split.png -------------------------------------------------------------------------------- /notebooks/images/vectorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/images/vectorized.png -------------------------------------------------------------------------------- /notebooks/rise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/notebooks/rise.css -------------------------------------------------------------------------------- /scripts/generate_slides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/scripts/generate_slides.sh -------------------------------------------------------------------------------- /scripts/prep_nb_for_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/scripts/prep_nb_for_ci.py -------------------------------------------------------------------------------- /scripts/slide_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uc-python/intermediate-python-datasci/HEAD/scripts/slide_prep.py --------------------------------------------------------------------------------