├── .github └── workflows │ └── sphinx.yml ├── .gitignore ├── LICENSE ├── Makefile ├── content ├── a_list.dot ├── a_list.svg ├── binder.rst ├── conf.py ├── cython.rst ├── data-formats.rst ├── dependencies.rst ├── exercises.md ├── format_comparison_array.csv ├── format_comparison_tidy.csv ├── guide.rst ├── img │ ├── binder │ │ ├── binder.jpg │ │ └── python_unmasked.jpg │ ├── cython │ │ ├── jupyter-cython-annotate.png │ │ └── unboxing-boxing.png │ ├── dependencies │ │ ├── conda-ecosystem.graphml │ │ └── conda-ecosystem.png │ ├── installation │ │ ├── anaconda-navigator-jupyterlab.png │ │ ├── anaconda-prompt.png │ │ ├── jupyterlab-notebook.png │ │ └── jupyterlab-terminal.png │ ├── jupyter │ │ ├── main-ui.png │ │ └── notebook-ui.png │ ├── numpy-advanced │ │ ├── 01_memory_layout.svg │ │ └── 02_views.svg │ ├── pandas │ │ ├── 01_table_dataframe.svg │ │ └── tidy_data.png │ ├── profiling │ │ └── dartboard.png │ └── xarray │ │ ├── xarray_1d_plot.png │ │ ├── xarray_2d_plot.png │ │ ├── xarray_dataset_image.png │ │ └── xarray_hist.png ├── index.rst ├── installation.rst ├── jupyter.ipynb ├── libraries.rst ├── ndarray.dot ├── ndarray.svg ├── numpy-advanced.rst ├── numpy.rst ├── packaging-example-project │ ├── README.md │ ├── calculator │ │ ├── __init__.py │ │ ├── adding.py │ │ ├── integrating.py │ │ └── subtracting.py │ ├── pyproject.toml │ ├── pyproject.toml-partial │ ├── test.py │ └── test_editable.py ├── packaging.rst ├── pandas.rst ├── parallel-pi-multiprocessing.ipynb ├── parallel.rst ├── plotting-matplotlib.md ├── plotting-matplotlib │ ├── customizing │ │ ├── gapminder-larger-font.png │ │ ├── gapminder-linear.png │ │ └── gapminder-log.png │ └── first-plot │ │ ├── exercise.png │ │ └── getting-started.png ├── plotting-vega-altair.md ├── plotting-vega-altair │ ├── channels-renamed.svg │ ├── precipitation-on-top-yearmonth.svg │ ├── precipitation-on-top.svg │ ├── precipitation-side.svg │ ├── precipitation-stacked-x.svg │ ├── precipitation-stacked-y.svg │ ├── snow-depth-circles.svg │ ├── snow-depth-color.svg │ ├── snow-depth-plasma.svg │ ├── snow-depth.svg │ ├── temperature-ranges-combined.svg │ ├── temperature-ranges-side.svg │ └── weekly-snow-depth.svg ├── productivity.md ├── productivity │ ├── chatgpt.png │ └── code-completion.gif ├── profiling.md ├── profiling │ ├── exercise.png │ └── exercise.py ├── python.rst ├── quick-reference.rst ├── scipy.rst ├── scripts.rst ├── web-apis.ipynb ├── work-with-data.rst └── xarray.rst ├── extras ├── data-formats-comparison-array.ipynb └── data-formats-comparison-tidy.ipynb ├── make.bat ├── requirements.txt ├── resources ├── code │ └── scripts │ │ ├── __pycache__ │ │ ├── optionsparser.cpython-38.pyc │ │ ├── weather_functions.cpython-38.pyc │ │ └── weather_functions_config.cpython-38.pyc │ │ ├── optionsparser.py │ │ ├── out.png │ │ ├── rain_in_cairo.png │ │ ├── weather.png │ │ ├── weather_functions.py │ │ ├── weather_functions_config.py │ │ ├── weather_observations.ipynb │ │ ├── weather_observations.py │ │ ├── weather_observations_argparse.py │ │ ├── weather_observations_config.py │ │ └── weather_options.yml ├── data │ ├── laureate.csv │ ├── plotting │ │ ├── README.md │ │ ├── exercise-2.csv │ │ ├── oslo-daily.csv │ │ ├── oslo-monthly.csv │ │ ├── tromso-daily.csv │ │ └── tromso-monthly.csv │ └── scripts │ │ ├── weather_cairo.csv │ │ └── weather_tapiola.csv └── notebooks │ ├── plotting-exercise-2.ipynb │ └── plotting.ipynb └── software └── environment.yml /.github/workflows/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/.github/workflows/sphinx.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution 4.0 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/Makefile -------------------------------------------------------------------------------- /content/a_list.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/a_list.dot -------------------------------------------------------------------------------- /content/a_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/a_list.svg -------------------------------------------------------------------------------- /content/binder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/binder.rst -------------------------------------------------------------------------------- /content/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/conf.py -------------------------------------------------------------------------------- /content/cython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/cython.rst -------------------------------------------------------------------------------- /content/data-formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/data-formats.rst -------------------------------------------------------------------------------- /content/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/dependencies.rst -------------------------------------------------------------------------------- /content/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/exercises.md -------------------------------------------------------------------------------- /content/format_comparison_array.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/format_comparison_array.csv -------------------------------------------------------------------------------- /content/format_comparison_tidy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/format_comparison_tidy.csv -------------------------------------------------------------------------------- /content/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/guide.rst -------------------------------------------------------------------------------- /content/img/binder/binder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/binder/binder.jpg -------------------------------------------------------------------------------- /content/img/binder/python_unmasked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/binder/python_unmasked.jpg -------------------------------------------------------------------------------- /content/img/cython/jupyter-cython-annotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/cython/jupyter-cython-annotate.png -------------------------------------------------------------------------------- /content/img/cython/unboxing-boxing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/cython/unboxing-boxing.png -------------------------------------------------------------------------------- /content/img/dependencies/conda-ecosystem.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/dependencies/conda-ecosystem.graphml -------------------------------------------------------------------------------- /content/img/dependencies/conda-ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/dependencies/conda-ecosystem.png -------------------------------------------------------------------------------- /content/img/installation/anaconda-navigator-jupyterlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/installation/anaconda-navigator-jupyterlab.png -------------------------------------------------------------------------------- /content/img/installation/anaconda-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/installation/anaconda-prompt.png -------------------------------------------------------------------------------- /content/img/installation/jupyterlab-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/installation/jupyterlab-notebook.png -------------------------------------------------------------------------------- /content/img/installation/jupyterlab-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/installation/jupyterlab-terminal.png -------------------------------------------------------------------------------- /content/img/jupyter/main-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/jupyter/main-ui.png -------------------------------------------------------------------------------- /content/img/jupyter/notebook-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/jupyter/notebook-ui.png -------------------------------------------------------------------------------- /content/img/numpy-advanced/01_memory_layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/numpy-advanced/01_memory_layout.svg -------------------------------------------------------------------------------- /content/img/numpy-advanced/02_views.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/numpy-advanced/02_views.svg -------------------------------------------------------------------------------- /content/img/pandas/01_table_dataframe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/pandas/01_table_dataframe.svg -------------------------------------------------------------------------------- /content/img/pandas/tidy_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/pandas/tidy_data.png -------------------------------------------------------------------------------- /content/img/profiling/dartboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/profiling/dartboard.png -------------------------------------------------------------------------------- /content/img/xarray/xarray_1d_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/xarray/xarray_1d_plot.png -------------------------------------------------------------------------------- /content/img/xarray/xarray_2d_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/xarray/xarray_2d_plot.png -------------------------------------------------------------------------------- /content/img/xarray/xarray_dataset_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/xarray/xarray_dataset_image.png -------------------------------------------------------------------------------- /content/img/xarray/xarray_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/img/xarray/xarray_hist.png -------------------------------------------------------------------------------- /content/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/index.rst -------------------------------------------------------------------------------- /content/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/installation.rst -------------------------------------------------------------------------------- /content/jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/jupyter.ipynb -------------------------------------------------------------------------------- /content/libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/libraries.rst -------------------------------------------------------------------------------- /content/ndarray.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/ndarray.dot -------------------------------------------------------------------------------- /content/ndarray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/ndarray.svg -------------------------------------------------------------------------------- /content/numpy-advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/numpy-advanced.rst -------------------------------------------------------------------------------- /content/numpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/numpy.rst -------------------------------------------------------------------------------- /content/packaging-example-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/README.md -------------------------------------------------------------------------------- /content/packaging-example-project/calculator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/calculator/__init__.py -------------------------------------------------------------------------------- /content/packaging-example-project/calculator/adding.py: -------------------------------------------------------------------------------- 1 | def add(x, y): 2 | return x + y 3 | -------------------------------------------------------------------------------- /content/packaging-example-project/calculator/integrating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/calculator/integrating.py -------------------------------------------------------------------------------- /content/packaging-example-project/calculator/subtracting.py: -------------------------------------------------------------------------------- 1 | def subtract(x, y): 2 | return x - y 3 | -------------------------------------------------------------------------------- /content/packaging-example-project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/pyproject.toml -------------------------------------------------------------------------------- /content/packaging-example-project/pyproject.toml-partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/pyproject.toml-partial -------------------------------------------------------------------------------- /content/packaging-example-project/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/test.py -------------------------------------------------------------------------------- /content/packaging-example-project/test_editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging-example-project/test_editable.py -------------------------------------------------------------------------------- /content/packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/packaging.rst -------------------------------------------------------------------------------- /content/pandas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/pandas.rst -------------------------------------------------------------------------------- /content/parallel-pi-multiprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/parallel-pi-multiprocessing.ipynb -------------------------------------------------------------------------------- /content/parallel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/parallel.rst -------------------------------------------------------------------------------- /content/plotting-matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-matplotlib.md -------------------------------------------------------------------------------- /content/plotting-matplotlib/customizing/gapminder-larger-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-matplotlib/customizing/gapminder-larger-font.png -------------------------------------------------------------------------------- /content/plotting-matplotlib/customizing/gapminder-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-matplotlib/customizing/gapminder-linear.png -------------------------------------------------------------------------------- /content/plotting-matplotlib/customizing/gapminder-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-matplotlib/customizing/gapminder-log.png -------------------------------------------------------------------------------- /content/plotting-matplotlib/first-plot/exercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-matplotlib/first-plot/exercise.png -------------------------------------------------------------------------------- /content/plotting-matplotlib/first-plot/getting-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-matplotlib/first-plot/getting-started.png -------------------------------------------------------------------------------- /content/plotting-vega-altair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair.md -------------------------------------------------------------------------------- /content/plotting-vega-altair/channels-renamed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/channels-renamed.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/precipitation-on-top-yearmonth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/precipitation-on-top-yearmonth.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/precipitation-on-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/precipitation-on-top.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/precipitation-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/precipitation-side.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/precipitation-stacked-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/precipitation-stacked-x.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/precipitation-stacked-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/precipitation-stacked-y.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/snow-depth-circles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/snow-depth-circles.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/snow-depth-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/snow-depth-color.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/snow-depth-plasma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/snow-depth-plasma.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/snow-depth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/snow-depth.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/temperature-ranges-combined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/temperature-ranges-combined.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/temperature-ranges-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/temperature-ranges-side.svg -------------------------------------------------------------------------------- /content/plotting-vega-altair/weekly-snow-depth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/plotting-vega-altair/weekly-snow-depth.svg -------------------------------------------------------------------------------- /content/productivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/productivity.md -------------------------------------------------------------------------------- /content/productivity/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/productivity/chatgpt.png -------------------------------------------------------------------------------- /content/productivity/code-completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/productivity/code-completion.gif -------------------------------------------------------------------------------- /content/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/profiling.md -------------------------------------------------------------------------------- /content/profiling/exercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/profiling/exercise.png -------------------------------------------------------------------------------- /content/profiling/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/profiling/exercise.py -------------------------------------------------------------------------------- /content/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/python.rst -------------------------------------------------------------------------------- /content/quick-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/quick-reference.rst -------------------------------------------------------------------------------- /content/scipy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/scipy.rst -------------------------------------------------------------------------------- /content/scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/scripts.rst -------------------------------------------------------------------------------- /content/web-apis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/web-apis.ipynb -------------------------------------------------------------------------------- /content/work-with-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/work-with-data.rst -------------------------------------------------------------------------------- /content/xarray.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/content/xarray.rst -------------------------------------------------------------------------------- /extras/data-formats-comparison-array.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/extras/data-formats-comparison-array.ipynb -------------------------------------------------------------------------------- /extras/data-formats-comparison-tidy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/extras/data-formats-comparison-tidy.ipynb -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/make.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/code/scripts/__pycache__/optionsparser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/__pycache__/optionsparser.cpython-38.pyc -------------------------------------------------------------------------------- /resources/code/scripts/__pycache__/weather_functions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/__pycache__/weather_functions.cpython-38.pyc -------------------------------------------------------------------------------- /resources/code/scripts/__pycache__/weather_functions_config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/__pycache__/weather_functions_config.cpython-38.pyc -------------------------------------------------------------------------------- /resources/code/scripts/optionsparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/optionsparser.py -------------------------------------------------------------------------------- /resources/code/scripts/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/out.png -------------------------------------------------------------------------------- /resources/code/scripts/rain_in_cairo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/rain_in_cairo.png -------------------------------------------------------------------------------- /resources/code/scripts/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather.png -------------------------------------------------------------------------------- /resources/code/scripts/weather_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_functions.py -------------------------------------------------------------------------------- /resources/code/scripts/weather_functions_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_functions_config.py -------------------------------------------------------------------------------- /resources/code/scripts/weather_observations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_observations.ipynb -------------------------------------------------------------------------------- /resources/code/scripts/weather_observations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_observations.py -------------------------------------------------------------------------------- /resources/code/scripts/weather_observations_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_observations_argparse.py -------------------------------------------------------------------------------- /resources/code/scripts/weather_observations_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_observations_config.py -------------------------------------------------------------------------------- /resources/code/scripts/weather_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/code/scripts/weather_options.yml -------------------------------------------------------------------------------- /resources/data/laureate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/laureate.csv -------------------------------------------------------------------------------- /resources/data/plotting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/plotting/README.md -------------------------------------------------------------------------------- /resources/data/plotting/exercise-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/plotting/exercise-2.csv -------------------------------------------------------------------------------- /resources/data/plotting/oslo-daily.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/plotting/oslo-daily.csv -------------------------------------------------------------------------------- /resources/data/plotting/oslo-monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/plotting/oslo-monthly.csv -------------------------------------------------------------------------------- /resources/data/plotting/tromso-daily.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/plotting/tromso-daily.csv -------------------------------------------------------------------------------- /resources/data/plotting/tromso-monthly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/plotting/tromso-monthly.csv -------------------------------------------------------------------------------- /resources/data/scripts/weather_cairo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/scripts/weather_cairo.csv -------------------------------------------------------------------------------- /resources/data/scripts/weather_tapiola.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/data/scripts/weather_tapiola.csv -------------------------------------------------------------------------------- /resources/notebooks/plotting-exercise-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/notebooks/plotting-exercise-2.ipynb -------------------------------------------------------------------------------- /resources/notebooks/plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/resources/notebooks/plotting.ipynb -------------------------------------------------------------------------------- /software/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaltoSciComp/python-for-scicomp/HEAD/software/environment.yml --------------------------------------------------------------------------------