包 | 描述 |
---|---|
ai.rapids.cudf |
修饰符和类型 | 方法和描述 |
---|---|
GroupByAggregationOnColumn |
GroupByAggregation.onColumn(int columnIndex) 将列添加到聚合中,以便可以在数据的特定列上使用它。
|
修饰符和类型 | 方法和描述 |
---|---|
表 |
Table.GroupByOperation.aggregate(GroupByAggregationOnColumn... aggregates) 聚合由索引表示的列组。用法:aggregate(count(), max(2),...); 示例:输入:1, 1, 1 1, 2, 1 2, 4, 5 table.groupBy(0, 2).count() col0, col1 输出:1, 1 1, 2 2, 1 ==> 聚合计数
|
版权所有 © 2025。保留所有权利。