用法:
Series.digitize(bins, right=False)
返回系列中每个值所属的 bin 的索引。
- bins:np.array
一维单调递增数组,类型与本系列相同。
- right:bool
指示区间是否包含右或左 bin 边。
- 包含索引的新系列。
参数:
返回:
注意:
假定 bin 的单调性且未检查。
例子:
>>> import cudf >>> s = cudf.Series([0.2, 6.4, 3.0, 1.6]) >>> bins = cudf.Series([0.0, 1.0, 2.5, 4.0, 10.0]) >>> inds = s.digitize(bins) >>> inds 0 1 1 4 2 3 3 2 dtype: int32
相关用法
- Python cudf.Series.div用法及代码示例
- Python cudf.Series.diff用法及代码示例
- Python cudf.Series.divide用法及代码示例
- Python cudf.Series.data用法及代码示例
- Python cudf.Series.dt用法及代码示例
- Python cudf.Series.drop_duplicates用法及代码示例
- Python cudf.Series.dropna用法及代码示例
- Python cudf.Series.drop用法及代码示例
- Python cudf.Series.dot用法及代码示例
- Python cudf.Series.describe用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.digitize。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。