├── .gitignore ├── LICENSE ├── README.md ├── data ├── apsc_bulletin.txt ├── carpet_age.csv ├── land_global_temperature_anomaly-1850-2023.csv ├── land_global_temperature_anomaly-1880-2016.csv ├── life_exp_avg_continent_year.csv ├── mae_bulletin.txt └── maunaloa_CO2.csv ├── environment.yml ├── images ├── 3d_array_sketch.png ├── create_notebook.png ├── find_the_min.png ├── jupyter-lab.png ├── jupyter-main.png ├── new_notebook.png ├── residuals.png ├── slicing.png ├── variables.png └── warmingstripes.png └── notebooks_en ├── 1_Interacting_with_Python.ipynb ├── 2_Jupyter_strings_and_lists.ipynb ├── 3_Example_play_with_MAEbulletin.ipynb ├── 4_NumPy_Arrays_and_Plotting.ipynb └── 5_Linear_Regression_with_Real_Data.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/README.md -------------------------------------------------------------------------------- /data/apsc_bulletin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/apsc_bulletin.txt -------------------------------------------------------------------------------- /data/carpet_age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/carpet_age.csv -------------------------------------------------------------------------------- /data/land_global_temperature_anomaly-1850-2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/land_global_temperature_anomaly-1850-2023.csv -------------------------------------------------------------------------------- /data/land_global_temperature_anomaly-1880-2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/land_global_temperature_anomaly-1880-2016.csv -------------------------------------------------------------------------------- /data/life_exp_avg_continent_year.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/life_exp_avg_continent_year.csv -------------------------------------------------------------------------------- /data/mae_bulletin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/mae_bulletin.txt -------------------------------------------------------------------------------- /data/maunaloa_CO2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/data/maunaloa_CO2.csv -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/environment.yml -------------------------------------------------------------------------------- /images/3d_array_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/3d_array_sketch.png -------------------------------------------------------------------------------- /images/create_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/create_notebook.png -------------------------------------------------------------------------------- /images/find_the_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/find_the_min.png -------------------------------------------------------------------------------- /images/jupyter-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/jupyter-lab.png -------------------------------------------------------------------------------- /images/jupyter-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/jupyter-main.png -------------------------------------------------------------------------------- /images/new_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/new_notebook.png -------------------------------------------------------------------------------- /images/residuals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/residuals.png -------------------------------------------------------------------------------- /images/slicing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/slicing.png -------------------------------------------------------------------------------- /images/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/variables.png -------------------------------------------------------------------------------- /images/warmingstripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/images/warmingstripes.png -------------------------------------------------------------------------------- /notebooks_en/1_Interacting_with_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/notebooks_en/1_Interacting_with_Python.ipynb -------------------------------------------------------------------------------- /notebooks_en/2_Jupyter_strings_and_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/notebooks_en/2_Jupyter_strings_and_lists.ipynb -------------------------------------------------------------------------------- /notebooks_en/3_Example_play_with_MAEbulletin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/notebooks_en/3_Example_play_with_MAEbulletin.ipynb -------------------------------------------------------------------------------- /notebooks_en/4_NumPy_Arrays_and_Plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/notebooks_en/4_NumPy_Arrays_and_Plotting.ipynb -------------------------------------------------------------------------------- /notebooks_en/5_Linear_Regression_with_Real_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersCode/EngComp1_offtheground/HEAD/notebooks_en/5_Linear_Regression_with_Real_Data.ipynb --------------------------------------------------------------------------------