File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
71
71
-i ES01 ` # For now it is ok if docstrings are missing the extended summary` \
72
72
-i " pandas.Series.dt PR01" ` # Accessors are implemented as classes, but we do not document the Parameters section` \
73
73
-i " pandas.DataFrame.max RT03" \
74
- -i " pandas.DataFrame.mean RT03,SA01 " \
75
- -i " pandas.DataFrame.median RT03,SA01 " \
74
+ -i " pandas.DataFrame.mean RT03" \
75
+ -i " pandas.DataFrame.median RT03" \
76
76
-i " pandas.DataFrame.min RT03" \
77
77
-i " pandas.DataFrame.plot PR02" \
78
78
-i " pandas.Grouper PR02" \
Original file line number Diff line number Diff line change @@ -12571,7 +12571,7 @@ def make_doc(name: str, ndim: int) -> str:
12571
12571
elif name == "median" :
12572
12572
base_doc = _num_doc
12573
12573
desc = "Return the median of the values over the requested axis."
12574
- see_also = ""
12574
+ see_also = _stat_func_see_also
12575
12575
examples = """
12576
12576
12577
12577
Examples
@@ -12612,7 +12612,7 @@ def make_doc(name: str, ndim: int) -> str:
12612
12612
elif name == "mean" :
12613
12613
base_doc = _num_doc
12614
12614
desc = "Return the mean of the values over the requested axis."
12615
- see_also = ""
12615
+ see_also = _stat_func_see_also
12616
12616
examples = """
12617
12617
12618
12618
Examples
@@ -12760,6 +12760,7 @@ def make_doc(name: str, ndim: int) -> str:
12760
12760
a 0.0
12761
12761
dtype: float64"""
12762
12762
kwargs = {"min_count" : "" }
12763
+
12763
12764
elif name == "kurt" :
12764
12765
base_doc = _num_doc
12765
12766
desc = (
You can’t perform that action at this time.
0 commit comments