类 DataFrameGroupBy
- java.lang.Object
-
- org.meteoinfo.data.dataframe.GroupBy
-
- org.meteoinfo.data.dataframe.DataFrameGroupBy
-
public class DataFrameGroupBy extends GroupBy
- 作者:
- Yaqiang Wang
-
-
构造器概要
构造器 构造器 说明 DataFrameGroupBy(Grouping groups, DataFrame dataFrame)Constructor
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 <V> DataFrameapply(Function<?,?> function)DataFramecount()Compute the sum of the numeric columns for each group.DataFramemax()Compute the Maximum of the numeric columns for each group.DataFramemean()Compute the mean of the numeric columns for each group.DataFramemedian()Compute the median of the numeric columns for each group.DataFramemin()Compute the minimum of the numeric columns for each group.DataFramesum()Compute the sum of the numeric columns for each group.
-
-
-
方法详细资料
-
count
public DataFrame count()
Compute the sum of the numeric columns for each group.
-
sum
public DataFrame sum()
Compute the sum of the numeric columns for each group.
-
mean
public DataFrame mean()
Compute the mean of the numeric columns for each group.
-
min
public DataFrame min()
Compute the minimum of the numeric columns for each group.
-
max
public DataFrame max()
Compute the Maximum of the numeric columns for each group.
-
-