[go: nahoru, domu]

Skip to content

Commit

Permalink
Add link for tutorial (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylere committed Feb 23, 2024
1 parent 321706a commit caf9db7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
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

0 comments on commit caf9db7

Please sign in to comment.