@@ -1004,7 +1004,7 @@ def sel(self, method=None, **indexers):
1004
1004
method : {None, 'nearest', 'pad'/'ffill', 'backfill'/'bfill'}, optional
1005
1005
Method to use for inexact matches (requires pandas>=0.16):
1006
1006
1007
- * default: only exact matches
1007
+ * None ( default) : only exact matches
1008
1008
* pad / ffill: propgate last valid index value forward
1009
1009
* backfill / bfill: propagate next valid index value backward
1010
1010
* nearest: use nearest valid index value
@@ -1140,7 +1140,7 @@ def sel_points(self, dim='points', method=None, **indexers):
1140
1140
method : {None, 'nearest', 'pad'/'ffill', 'backfill'/'bfill'}, optional
1141
1141
Method to use for inexact matches (requires pandas>=0.16):
1142
1142
1143
- * default: only exact matches
1143
+ * None ( default) : only exact matches
1144
1144
* pad / ffill: propgate last valid index value forward
1145
1145
* backfill / bfill: propagate next valid index value backward
1146
1146
* nearest: use nearest valid index value
@@ -1185,7 +1185,7 @@ def reindex_like(self, other, method=None, copy=True):
1185
1185
Method to use for filling index values from other not found in this
1186
1186
dataset:
1187
1187
1188
- * default: don't fill gaps
1188
+ * None ( default) : don't fill gaps
1189
1189
* pad / ffill: propgate last valid index value forward
1190
1190
* backfill / bfill: propagate next valid index value backward
1191
1191
* nearest: use nearest valid index value (requires pandas>=0.16)
@@ -1222,7 +1222,7 @@ def reindex(self, indexers=None, method=None, copy=True, **kw_indexers):
1222
1222
Method to use for filling index values in ``indexers`` not found in
1223
1223
this dataset:
1224
1224
1225
- * default: don't fill gaps
1225
+ * None ( default) : don't fill gaps
1226
1226
* pad / ffill: propgate last valid index value forward
1227
1227
* backfill / bfill: propagate next valid index value backward
1228
1228
* nearest: use nearest valid index value (requires pandas>=0.16)
0 commit comments