File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -200,9 +200,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
200
200
-i " pandas.Series.floordiv PR07" \
201
201
-i " pandas.Series.ge PR07,SA01" \
202
202
-i " pandas.Series.gt PR07,SA01" \
203
- -i " pandas.Series.hasnans SA01" \
204
- -i " pandas.Series.is_monotonic_decreasing SA01" \
205
- -i " pandas.Series.is_monotonic_increasing SA01" \
206
203
-i " pandas.Series.kurt RT03,SA01" \
207
204
-i " pandas.Series.kurtosis RT03,SA01" \
208
205
-i " pandas.Series.le PR07,SA01" \
Original file line number Diff line number Diff line change @@ -909,6 +909,11 @@ def hasnans(self) -> bool:
909
909
-------
910
910
bool
911
911
912
+ See Also
913
+ --------
914
+ Series.isna : Detect missing values.
915
+ Series.notna : Detect existing (non-missing) values.
916
+
912
917
Examples
913
918
--------
914
919
>>> s = pd.Series([1, 2, 3, None])
@@ -1135,6 +1140,11 @@ def is_monotonic_increasing(self) -> bool:
1135
1140
-------
1136
1141
bool
1137
1142
1143
+ See Also
1144
+ --------
1145
+ Series.is_monotonic_decreasing : Return boolean if values in the object are
1146
+ monotonically decreasing.
1147
+
1138
1148
Examples
1139
1149
--------
1140
1150
>>> s = pd.Series([1, 2, 2])
@@ -1158,6 +1168,11 @@ def is_monotonic_decreasing(self) -> bool:
1158
1168
-------
1159
1169
bool
1160
1170
1171
+ See Also
1172
+ --------
1173
+ Series.is_monotonic_increasing : Return boolean if values in the object are
1174
+ monotonically increasing.
1175
+
1161
1176
Examples
1162
1177
--------
1163
1178
>>> s = pd.Series([3, 2, 2, 1])
You can’t perform that action at this time.
0 commit comments