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