File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
120
120
-i " pandas.core.resample.Resampler.var SA01" \
121
121
-i " pandas.errors.AttributeConflictWarning SA01" \
122
122
-i " pandas.errors.ChainedAssignmentError SA01" \
123
- -i " pandas.errors.DataError SA01" \
124
123
-i " pandas.errors.DuplicateLabelError SA01" \
125
124
-i " pandas.errors.IntCastingNaNError SA01" \
126
125
-i " pandas.errors.InvalidIndexError SA01" \
Original file line number Diff line number Diff line change @@ -429,6 +429,11 @@ class DataError(Exception):
429
429
For example, calling ``ohlc`` on a non-numerical column or a function
430
430
on a rolling window.
431
431
432
+ See Also
433
+ --------
434
+ Series.rolling : Provide rolling window calculations on Series object.
435
+ DataFrame.rolling : Provide rolling window calculations on DataFrame object.
436
+
432
437
Examples
433
438
--------
434
439
>>> ser = pd.Series(["a", "b", "c"])
You can’t perform that action at this time.
0 commit comments