Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link for tutorial #246

Merged
merged 3 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"build": {
"dockerfile": "./Dockerfile",
"context": "../conda",
"context": "../conda"
},
"postCreateCommand": {
"vscode": "mkdir ${containerWorkspaceFolder}/.vscode && cp ${containerWorkspaceFolder}/.devcontainer/tasks.json ${containerWorkspaceFolder}/.vscode/tasks.json",
"vscode": "mkdir ${containerWorkspaceFolder}/.vscode && cp ${containerWorkspaceFolder}/.devcontainer/tasks.json ${containerWorkspaceFolder}/.vscode/tasks.json"
},
"hostRequirements": {
"cpus": 2,
"cpus": 2
},
"customizations": {
"codespaces": {
"openFiles": ["README.md"],
"openFiles": ["README.md"]
},
"vscode": {
"extensions": ["ms-toolsai.jupyter", "ms-python.python"],
},
},
"extensions": ["ms-toolsai.jupyter", "ms-python.python"]
}
}
}
14 changes: 7 additions & 7 deletions .devcontainer/scipy2023/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"build": {
"dockerfile": "../Dockerfile",
"context": "../../conda",
"context": "../../conda"
},
"postCreateCommand": {
"jupyterlab": "mkdir /home/jovyan/.jupyter && cp ${containerWorkspaceFolder}/.devcontainer/scipy2023/jupyter_lab_config.py /home/jovyan/.jupyter/jupyter_lab_config.py",
"vscode": "mkdir ${containerWorkspaceFolder}/.vscode && cp ${containerWorkspaceFolder}/.devcontainer/scipy2023/tasks.json ${containerWorkspaceFolder}/.vscode/tasks.json",
"vscode": "mkdir ${containerWorkspaceFolder}/.vscode && cp ${containerWorkspaceFolder}/.devcontainer/scipy2023/tasks.json ${containerWorkspaceFolder}/.vscode/tasks.json"
},
"hostRequirements": {
"cpus": 2,
"cpus": 2
},
"customizations": {
"codespaces": {
"openFiles": ["workshops/scipy2023/README.md"],
"openFiles": ["workshops/scipy2023/README.md"]
},
"vscode": {
"extensions": ["ms-toolsai.jupyter", "ms-python.python"],
},
},
"extensions": ["ms-toolsai.jupyter", "ms-python.python"]
}
}
}
2 changes: 1 addition & 1 deletion fundamentals/01_datastructures.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"multi-dimensional arrays while `Dataset` combines multiple arrays.\n",
"\n",
"Both classes are most commonly created by reading data.\n",
"To learn how to create a DataArray or Dataset manually, see the **Working with labeled data** tutorial.\n",
"To learn how to create a DataArray or Dataset manually, see the [Creating Data Structures](01.1_creating_data_structures.ipynb) tutorial.\n",
"\n",
"Xarray has a few small real-world tutorial datasets hosted in this GitHub repository https://github.com/pydata/xarray-data.\n",
"We'll use the [xarray.tutorial.load_dataset](https://docs.xarray.dev/en/stable/generated/xarray.tutorial.open_dataset.html#xarray.tutorial.open_dataset) convenience function to download and open the `air_temperature` (National Centers for Environmental Prediction) Dataset by name."
Expand Down
Loading