Package org.meteoinfo.data.dataframe
Class DataFrameGroupBy
- java.lang.Object
-
- org.meteoinfo.data.dataframe.GroupBy
-
- org.meteoinfo.data.dataframe.DataFrameGroupBy
-
public class DataFrameGroupBy extends GroupBy
-
-
Constructor Summary
Constructors Constructor Description DataFrameGroupBy(Grouping groups, DataFrame dataFrame)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <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.
-
-
-
Method Detail
-
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.
-
-