@@ -259,7 +259,7 @@ def _from_factorized(cls, values, original):
259
259
closed : {'left', 'right', 'both', 'neither'}, default 'right'
260
260
Whether the intervals are closed on the left-side, right-side, both
261
261
or neither.
262
- copy : boolean , default False
262
+ copy : bool , default False
263
263
copy the data
264
264
dtype : dtype or None, default None
265
265
If None, dtype will be inferred
@@ -315,7 +315,7 @@ def from_breaks(cls, breaks, closed="right", copy=False, dtype=None):
315
315
closed : {'left', 'right', 'both', 'neither'}, default 'right'
316
316
Whether the intervals are closed on the left-side, right-side, both
317
317
or neither.
318
- copy : boolean , default False
318
+ copy : bool , default False
319
319
Copy the data.
320
320
dtype : dtype, optional
321
321
If None, dtype will be inferred.
@@ -387,7 +387,7 @@ def from_arrays(cls, left, right, closed="right", copy=False, dtype=None):
387
387
closed : {'left', 'right', 'both', 'neither'}, default 'right'
388
388
Whether the intervals are closed on the left-side, right-side, both
389
389
or neither.
390
- copy : boolean , default False
390
+ copy : bool , default False
391
391
by-default copy the data, this is compat only and ignored
392
392
dtype : dtype or None, default None
393
393
If None, dtype will be inferred
@@ -811,7 +811,7 @@ def value_counts(self, dropna=True):
811
811
812
812
Parameters
813
813
----------
814
- dropna : boolean , default True
814
+ dropna : bool , default True
815
815
Don't include counts of NaN.
816
816
817
817
Returns
0 commit comments