Skip to content

Commit deef167

Browse files
authored
minor typo fix (#219)
1 parent ade6ed9 commit deef167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate/01-high-level-computation-patterns.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@
928928
"For instance, grouping data by month (which have varying numbers of days) or the results of an image classification.\n",
929929
"The GroupBy functions are essentially a generalization of `coarsen`: \n",
930930
"\n",
931-
"- `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",
931+
"- `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",
932932
"- `groupby_bins`: Use binning operations, e.g. histograms, to group your data.\n",
933933
"- `resample`: Specialized implementation of GroupBy specifically for time grouping (so far), allows you to change sampling frequency of dataset.\n",
934934
"\n",

0 commit comments

Comments
 (0)