public class DataFrameGroupBy extends GroupBy
| 构造器 | 说明 |
|---|---|
DataFrameGroupBy(Grouping groups,
DataFrame dataFrame) |
Constructor
|
| 限定符和类型 | 方法 | 说明 |
|---|---|---|
<V> DataFrame |
apply(Function<?,?> function) |
|
DataFrame |
count() |
Compute the sum of the numeric columns for each group.
|
DataFrame |
max() |
Compute the Maximum of the numeric columns for each group.
|
DataFrame |
mean() |
Compute the mean of the numeric columns for each group.
|
DataFrame |
median() |
Compute the median of the numeric columns for each group.
|
DataFrame |
min() |
Compute the minimum of the numeric columns for each group.
|
DataFrame |
percentile(double quantile) |
Compute the percentile of the numeric columns for each group.
|
DataFrame |
stdDev() |
Compute the standard deviation of the numeric columns for each group.
|
DataFrame |
sum() |
Compute the sum of the numeric columns for each group.
|
public DataFrame count()
public DataFrame sum()
public DataFrame mean()
public DataFrame min()
public DataFrame max()
public DataFrame median()
public DataFrame stdDev()
public DataFrame percentile(double quantile)
percentile 在类中 GroupByquantile - Quantile valueCopyright © 2019. All rights reserved.