File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
138
138
-i " pandas.errors.PossibleDataLossError SA01" \
139
139
-i " pandas.errors.UndefinedVariableError PR01,SA01" \
140
140
-i " pandas.errors.UnsortedIndexError SA01" \
141
- -i " pandas.errors.UnsupportedFunctionCall SA01" \
142
141
-i " pandas.errors.ValueLabelTypeMismatch SA01" \
143
142
-i " pandas.infer_freq SA01" \
144
143
-i " pandas.io.json.build_table_schema PR07,RT03,SA01" \
Original file line number Diff line number Diff line change @@ -76,6 +76,12 @@ class UnsupportedFunctionCall(ValueError):
76
76
77
77
For example, ``np.cumsum(groupby_object)``.
78
78
79
+ See Also
80
+ --------
81
+ DataFrame.groupby : Group DataFrame using a mapper or by a Series of columns.
82
+ Series.groupby : Group Series using a mapper or by a Series of columns.
83
+ core.groupby.GroupBy.cumsum : Compute cumulative sum for each group.
84
+
79
85
Examples
80
86
--------
81
87
>>> df = pd.DataFrame(
You can’t perform that action at this time.
0 commit comments