Skip to content

Commit

Permalink
minor typo fix (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored Oct 3, 2023
1 parent ade6ed9 commit deef167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intermediate/01-high-level-computation-patterns.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@
"For instance, grouping data by month (which have varying numbers of days) or the results of an image classification.\n",
"The GroupBy functions are essentially a generalization of `coarsen`: \n",
"\n",
"- `groupby`: divide data into distinct groups, e.g. climatologies, composites. Works best when the \"group indentifiers\" or \"labels\" are exact and can be determined using equality (`==`), e.g. characters or integers. Remember that floats are not exact values.\n",
"- `groupby`: divide data into distinct groups, e.g. climatologies, composites. Works best when the \"group identifiers\" or \"labels\" are exact and can be determined using equality (`==`), e.g. characters or integers. Remember that floats are not exact values.\n",
"- `groupby_bins`: Use binning operations, e.g. histograms, to group your data.\n",
"- `resample`: Specialized implementation of GroupBy specifically for time grouping (so far), allows you to change sampling frequency of dataset.\n",
"\n",
Expand Down

0 comments on commit deef167

Please sign in to comment.