Skip to content

Commit

Permalink
Incorporate feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dcamron committed Jun 16, 2021
1 parent 5350ec3 commit 1ac20d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion core/datetime/datetime.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"In this notebook, we will:\n",
"\n",
"1. Introduce the [time](https://docs.python.org/3/library/time.html) and [datetime](https://docs.python.org/3/library/datetime.html) modules from the Python Standard Library\n",
"1. Take a brief aside into Object-Oriented programming and Python classes\n",
"1. Look at formatted input and output of dates and times\n",
"1. See how we can do simple arithmetic on date/time data, making use of the `timedelta` object\n",
"1. Briefly make use of the [pytz](https://pypi.org/project/pytz/) module to handle some thorny time zone issues in Python."
Expand Down
2 changes: 1 addition & 1 deletion core/pandas/pandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@
"source": [
"<div class=\"admonition alert alert-info\">\n",
" <p class=\"admonition-title\" style=\"font-weight:bold\">Info</p>\n",
" label-based slices are <b>inclusive</b> of the final value, different to above!\n",
" label-based slices are <b>inclusive</b> of the final value, different from above!\n",
"</div>"
]
},
Expand Down
4 changes: 2 additions & 2 deletions core/xarray/xarray.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"| [NumPy Basics](../numpy/numpy-basics) | Necessary | |\n",
"| [Intermediate NumPy](../numpy/intermediate-numpy) | Helpful | Familiarity with indexing and slicing arrays |\n",
"| [NumPy Broadcasting](../numpy/numpy-broadcasting) | Helpful | Familiar with array arithmetic and broadcasting |\n",
"| [Introduction to Pandas](../pandas/pandas_fullNotebook) | Helpful | Familiarity with labeled data |\n",
"| [Introduction to Pandas](../pandas/pandas) | Helpful | Familiarity with labeled data |\n",
"| [Datetime](../datetime/datetime) | Helpful | Familiarity with time formats and the `timedelta` object |\n",
"| [Understanding of NetCDF](some-link-to-external-resource) | Helpful | Familiarity with metadata structure |\n",
"\n",
Expand Down Expand Up @@ -800,7 +800,7 @@
"\n",
"### Simple visualization with `.plot()`\n",
"\n",
"Much like we saw in [Pandas](../pandas/pandas_fullNotebook), Xarray includes an interface to [Matplotlib](../matplotlib) that we can access through the `.plot()` method of every `DataArray`.\n",
"Much like we saw in [Pandas](../pandas/pandas), Xarray includes an interface to [Matplotlib](../matplotlib) that we can access through the `.plot()` method of every `DataArray`.\n",
"\n",
"For quick and easy data exploration, we can just call `.plot()` without any modifiers:"
]
Expand Down

0 comments on commit 1ac20d8

Please sign in to comment.