Uses of Class
org.meteoinfo.data.dataframe.DataFrame
-
Packages that use DataFrame Package Description org.meteoinfo.data.dataframe org.meteoinfo.data.dataframe.impl org.meteoinfo.data.meteodata.micaps -
-
Uses of DataFrame in org.meteoinfo.data.dataframe
Methods in org.meteoinfo.data.dataframe that return DataFrame Modifier and Type Method Description DataFrameDataFrame. append(DataFrame df)Append another data frame<V> DataFrameDataFrame. apply(Function<?,?> function)Apply a function<V> DataFrameDataFrameGroupBy. apply(Function<?,?> function)DataFrameDataFrame. count()Compute the sum of the numeric columns.DataFrameDataFrameGroupBy. count()Compute the sum of the numeric columns for each group.<V> DataFrameDataFrame. describe()DataFrameDataFrame. drop(java.lang.Integer... cols)Create a new data frame by leaving out the specified columns.DataFrameDataFrame. drop(java.util.List<java.lang.String> colNames)Create a new data frame by leaving out the specified columns.DataFrameDataFrame. drop(Column... cols)Create a new data frame by leaving out the specified columns.DataFrameDataFrame. max()Compute the Maximum of the numeric columns.DataFrameDataFrameGroupBy. max()Compute the Maximum of the numeric columns for each group.DataFrameDataFrame. mean()Compute the mean of the numeric columns.DataFrameDataFrameGroupBy. mean()Compute the mean of the numeric columns for each group.DataFrameDataFrame. median()Compute the median of the numeric columns.DataFrameDataFrameGroupBy. median()Compute the median of the numeric columns for each group.DataFrameDataFrame. min()Compute the minimum of the numeric columns.DataFrameDataFrameGroupBy. min()Compute the minimum of the numeric columns for each group.DataFrameDataFrame. numeric()Return a data frame containing only columns with numeric data.static DataFrameDataFrame. readTable(java.lang.String fileName, java.lang.String delimiter, int skipRows, java.lang.String formatSpec, java.lang.String encoding, int indexCol, java.lang.String indexFormat, java.util.List<java.lang.String> names, java.lang.Integer header, int skipFooter)Read data frame from ASCII fileDataFrameDataFrame. retain(java.lang.Integer... cols)Create a new data frame containing only the specified columns.DataFrameDataFrame. retain(java.lang.Object... cols)Create a new data frame containing only the specified columns.DataFrameDataFrame. sortBy(boolean ascending, java.lang.Integer... cols)DataFrameDataFrame. sortBy(java.lang.Object... cols)<V> DataFrameDataFrame. sortBy(java.util.Comparator<java.util.List<V>> comparator)DataFrameDataFrame. sortBy(java.util.List<java.lang.String> cols, java.util.List<java.lang.Boolean> ascendings)DataFrameDataFrame. sortByIndex(boolean ascending)DataFrameDataFrame. sum()Compute the sum of the numeric columns.DataFrameDataFrameGroupBy. sum()Compute the sum of the numeric columns for each group.DataFrameDataFrame. transpose()TransposeMethods in org.meteoinfo.data.dataframe with parameters of type DataFrame Modifier and Type Method Description DataFrameDataFrame. append(DataFrame df)Append another data frameConstructors in org.meteoinfo.data.dataframe with parameters of type DataFrame Constructor Description DataFrameGroupBy(Grouping groups, DataFrame dataFrame)Constructor -
Uses of DataFrame in org.meteoinfo.data.dataframe.impl
Fields in org.meteoinfo.data.dataframe.impl declared as DataFrame Modifier and Type Field Description protected DataFrameViews.TransformedSeriesView. dfprotected DataFrameViews.TransformedView. dfMethods in org.meteoinfo.data.dataframe.impl that return DataFrame Modifier and Type Method Description <V> DataFrameGrouping. apply(DataFrame df, Function<?,?> function)static DataFrameAggregation. describe(DataFrame df)static <V> DataFrameSorting. sort(DataFrame df, java.util.Comparator<java.util.List<V>> comparator)static <V> DataFrameSorting. sort(DataFrame df, java.util.Map<java.lang.Integer,SortDirection> cols)static <V> DataFrameSorting. sortIndex(DataFrame df, SortDirection dir)Methods in org.meteoinfo.data.dataframe.impl with parameters of type DataFrame Modifier and Type Method Description <V> DataFrameGrouping. apply(DataFrame df, Function<?,?> function)static DataFrameAggregation. describe(DataFrame df)static SparseBitSetInspection. nonnumeric(DataFrame df)static SparseBitSetInspection. numeric(DataFrame df)static <V> SparseBitSetSelection. select(DataFrame df, Predicate<V> predicate)static <V> SparseBitSet[]Selection. slice(DataFrame df, java.lang.Integer rowStart, java.lang.Integer rowEnd, java.lang.Integer colStart, java.lang.Integer colEnd)static <V> DataFrameSorting. sort(DataFrame df, java.util.Comparator<java.util.List<V>> comparator)static <V> DataFrameSorting. sort(DataFrame df, java.util.Map<java.lang.Integer,SortDirection> cols)static <V> DataFrameSorting. sortIndex(DataFrame df, SortDirection dir)static java.util.List<java.lang.Class<?>>Inspection. types(DataFrame df)Constructors in org.meteoinfo.data.dataframe.impl with parameters of type DataFrame Constructor Description DataFrameListView(DataFrame df, int index, boolean transpose)DataFrameMapView(DataFrame df, int index, boolean transpose)FlatView(DataFrame df)Grouping(DataFrame df, java.lang.Integer... columns)Grouping(DataFrame df, KeyFunction<V> function, java.lang.Integer... columns)Grouping(DataFrame df, WindowFunction function)ListView(DataFrame df, boolean transpose)MapView(DataFrame df, boolean transpose)SeriesListView(DataFrame df, int index, boolean transpose)TransformedSeriesView(DataFrame df, Function<V,U> transform, int index, boolean transpose)TransformedView(DataFrame df, Function<V,U> transform, boolean transpose) -
Uses of DataFrame in org.meteoinfo.data.meteodata.micaps
Methods in org.meteoinfo.data.meteodata.micaps that return DataFrame Modifier and Type Method Description DataFrameMICAPS120DataInfo. readDataFrame()Read data frameDataFrameMICAPS1DataInfo. readDataFrame()Read data frame
-