-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Post-SciPy update * remove scipy nebari information
- Loading branch information
Showing
7 changed files
with
109 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Intermediate Path | ||
|
||
This learning path was presented at SciPy 2023. It covers intermediate | ||
and more advanced topics and is a good follow-on from the [Fundamental Path](fundamental-path) | ||
|
||
The tutorial was organized by: | ||
|
||
- Deepak Cherian (National Center for Atmospheric Research) | ||
- Scott Henderson (Univ. Washington) | ||
- Jessica Scheick (Univ. New Hampshire) | ||
- Negin Sobhani (National Center for Atmospheric Research) | ||
- Tom Nicholas (Lamont-Doherty Earth Observatory) | ||
- Anderson Banihirwe (CarbonPlan) | ||
- Don Setiawan (Univ. Washington) | ||
|
||
## Outline | ||
|
||
```{dropdown} Introduction | ||
{doc}`../../overview/get-started` | ||
``` | ||
|
||
```{dropdown} Indexing | ||
{doc}`../../intermediate/indexing/advanced-indexing` | ||
``` | ||
|
||
```{dropdown} Computational Patterns | ||
{doc}`../../intermediate/01-high-level-computation-patterns` | ||
``` | ||
|
||
```{dropdown} Wrapping other arrays: dask | ||
{doc}`../../intermediate/xarray_and_dask` | ||
``` | ||
|
||
```{dropdown} Wrapping custom computation | ||
{doc}`../../advanced/apply_ufunc/simple_numpy_apply_ufunc` | ||
{doc}`../../advanced/apply_ufunc/core-dimensions` | ||
{doc}`../../advanced/apply_ufunc/complex-output-numpy` | ||
{doc}`Explore the remaining material <../../advanced/apply_ufunc/apply_ufunc>` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "6bad0788-4bd2-49bb-818a-4eda1e265cf1", | ||
"metadata": {}, | ||
"source": [ | ||
"<img src=\"../../images/scipylogo2023.png\" align=\"right\" width=\"20%\">\n", | ||
"\n", | ||
"\n", | ||
"# Welcome to the Xarray SciPy 2023 Tutorial! \n", | ||
"\n", | ||
"**Xarray**: *Friendly, Interactive, and Scalable Scientific Data Analysis*\n", | ||
"\n", | ||
"\n", | ||
"This *4-hour* workshop will explore content from [the Xarray tutorial](https://tutorial.xarray.dev), which contains a comprehensive collection of hands-on tutorial Jupyter Notebooks. We won't cover it all today, but instead will review a curated set of examples that will prepare you for increasingly complex real-world data analysis tasks!\n", | ||
"\n", | ||
"\n", | ||
"## Schedule \n", | ||
"*Times in Central Daylight (Austin, TX)\n", | ||
"\n", | ||
"Use the links to navigate to the right notebooks.\n", | ||
"\n", | ||
"**Remember to select `global-global-xarray environment` for the notebooks when prompted.**\n", | ||
"\n", | ||
"| Topic | Time | Notebook Links | \n", | ||
"| :- | - | - | \n", | ||
"| Introduction and Setup | 1:30 (20 min) | --- | \n", | ||
"| Indexing | 1:50 (30 min) | [Advanced and Vectorized Indexing](../../intermediate/indexing/advanced-indexing.ipynb) | \n", | ||
"| *10 minute Break* \n", | ||
"| Computational Patterns | 2:30 (50 min) | [Computation Patterns](../../intermediate/01-high-level-computation-patterns.ipynb) | \n", | ||
"| *10 minute Break* | \n", | ||
"| Wrapping other arrays | 3:30 (50 min) | [Xarray and Dask](../../intermediate/xarray_and_dask.ipynb) | \n", | ||
"| *10 minute Break* | \n", | ||
"| Wrapping custom computation (apply_ufunc) | 4:30 (30 min) <br> <br> <br> 5:00 (30 min) | [A gentle introduction](../../advanced/apply_ufunc/simple_numpy_apply_ufunc.ipynb) <br> [Core dimensions](../../advanced/apply_ufunc/core-dimensions.ipynb) <br> [Handling complex output](../../advanced/apply_ufunc/complex-output-numpy.ipynb) <br> Explore the rest of the material |\n", | ||
"| | **End 5:30** | |\n", | ||
"\n", | ||
"\n", | ||
"\n", | ||
"## Thanks for attending!\n", | ||
"\n", | ||
"Please continue to explore the subfolders in the JupyterLab File Browser for additional tutorial notebooks to run, or read the rendered notebooks at [https://tutorial.xarray.dev](https://tutorial.xarray.dev)" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters