@@ -523,15 +523,15 @@ cdef class {{name}}HashTable(HashTable):
523
523
any value "val" satisfying val != val is considered missing.
524
524
If na_value is not None, then _additionally_, any value "val"
525
525
satisfying val == na_value is considered missing.
526
- ignore_na : boolean , default False
526
+ ignore_na : bool , default False
527
527
Whether NA-values should be ignored for calculating the uniques. If
528
528
True, the labels corresponding to missing values will be set to
529
529
na_sentinel.
530
530
mask : ndarray[bool], optional
531
531
If not None, the mask is used as indicator for missing values
532
532
(True = missing, False = valid) instead of `na_value` or
533
533
condition "val != val".
534
- return_inverse : boolean , default False
534
+ return_inverse : bool , default False
535
535
Whether the mapping of the original array values to their location
536
536
in the vector of uniques should be returned.
537
537
@@ -625,7 +625,7 @@ cdef class {{name}}HashTable(HashTable):
625
625
----------
626
626
values : ndarray[{{dtype}}]
627
627
Array of values of which unique will be calculated
628
- return_inverse : boolean , default False
628
+ return_inverse : bool , default False
629
629
Whether the mapping of the original array values to their location
630
630
in the vector of uniques should be returned.
631
631
@@ -906,11 +906,11 @@ cdef class StringHashTable(HashTable):
906
906
that is not a string is considered missing. If na_value is
907
907
not None, then _additionally_ any value "val" satisfying
908
908
val == na_value is considered missing.
909
- ignore_na : boolean , default False
909
+ ignore_na : bool , default False
910
910
Whether NA-values should be ignored for calculating the uniques. If
911
911
True, the labels corresponding to missing values will be set to
912
912
na_sentinel.
913
- return_inverse : boolean , default False
913
+ return_inverse : bool , default False
914
914
Whether the mapping of the original array values to their location
915
915
in the vector of uniques should be returned.
916
916
@@ -998,7 +998,7 @@ cdef class StringHashTable(HashTable):
998
998
----------
999
999
values : ndarray[object]
1000
1000
Array of values of which unique will be calculated
1001
- return_inverse : boolean , default False
1001
+ return_inverse : bool , default False
1002
1002
Whether the mapping of the original array values to their location
1003
1003
in the vector of uniques should be returned.
1004
1004
@@ -1181,11 +1181,11 @@ cdef class PyObjectHashTable(HashTable):
1181
1181
any value "val" satisfying val != val is considered missing.
1182
1182
If na_value is not None, then _additionally_, any value "val"
1183
1183
satisfying val == na_value is considered missing.
1184
- ignore_na : boolean , default False
1184
+ ignore_na : bool , default False
1185
1185
Whether NA-values should be ignored for calculating the uniques. If
1186
1186
True, the labels corresponding to missing values will be set to
1187
1187
na_sentinel.
1188
- return_inverse : boolean , default False
1188
+ return_inverse : bool , default False
1189
1189
Whether the mapping of the original array values to their location
1190
1190
in the vector of uniques should be returned.
1191
1191
@@ -1251,7 +1251,7 @@ cdef class PyObjectHashTable(HashTable):
1251
1251
----------
1252
1252
values : ndarray[object]
1253
1253
Array of values of which unique will be calculated
1254
- return_inverse : boolean , default False
1254
+ return_inverse : bool , default False
1255
1255
Whether the mapping of the original array values to their location
1256
1256
in the vector of uniques should be returned.
1257
1257
0 commit comments