File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
95
95
-i " pandas.core.resample.Resampler.std SA01" \
96
96
-i " pandas.core.resample.Resampler.transform PR01,RT03,SA01" \
97
97
-i " pandas.core.resample.Resampler.var SA01" \
98
- -i " pandas.errors.NullFrequencyError SA01" \
99
- -i " pandas.errors.NumbaUtilError SA01" \
100
- -i " pandas.errors.PerformanceWarning SA01" \
101
98
-i " pandas.errors.UndefinedVariableError PR01,SA01" \
102
99
-i " pandas.errors.ValueLabelTypeMismatch SA01" \
103
100
-i " pandas.io.json.build_table_schema PR07,RT03,SA01" \
Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ class NullFrequencyError(ValueError):
45
45
Particularly ``DatetimeIndex.shift``, ``TimedeltaIndex.shift``,
46
46
``PeriodIndex.shift``.
47
47
48
+ See Also
49
+ --------
50
+ Index.shift : Shift values of Index.
51
+ Series.shift : Shift values of Series.
52
+
48
53
Examples
49
54
--------
50
55
>>> df = pd.DatetimeIndex(["2011-01-01 10:00", "2011-01-01"], freq=None)
@@ -58,6 +63,12 @@ class PerformanceWarning(Warning):
58
63
"""
59
64
Warning raised when there is a possible performance impact.
60
65
66
+ See Also
67
+ --------
68
+ DataFrame.set_index : Set the DataFrame index using existing columns.
69
+ DataFrame.loc : Access a group of rows and columns by label(s) \
70
+ or a boolean array.
71
+
61
72
Examples
62
73
--------
63
74
>>> df = pd.DataFrame(
@@ -385,6 +396,13 @@ class NumbaUtilError(Exception):
385
396
"""
386
397
Error raised for unsupported Numba engine routines.
387
398
399
+ See Also
400
+ --------
401
+ DataFrame.groupby : Group DataFrame using a mapper or by a Series of columns.
402
+ Series.groupby : Group Series using a mapper or by a Series of columns.
403
+ DataFrame.agg : Aggregate using one or more operations over the specified axis.
404
+ Series.agg : Aggregate using one or more operations over the specified axis.
405
+
388
406
Examples
389
407
--------
390
408
>>> df = pd.DataFrame(
You can’t perform that action at this time.
0 commit comments