Uses of Interface
tech.tablesaw.api.NumericColumn
-
Packages that use NumericColumn Package Description tech.tablesaw.aggregate tech.tablesaw.api tech.tablesaw.columns.numbers tech.tablesaw.filtering tech.tablesaw.table tech.tablesaw.util -
-
Uses of NumericColumn in tech.tablesaw.aggregate
Methods in tech.tablesaw.aggregate with parameters of type NumericColumn Modifier and Type Method Description static DoubleAggregateFunctions. meanDifference(NumericColumn<?> column1, NumericColumn<?> column2)Returns the given mean difference of the values in the arguments
TODO(lwhite): These are two column reductions.static DoubleAggregateFunctions. percentile(NumericColumn<?> data, Double percentile)Returns the given percentile of the values in the argumentstatic TablePivotTable. pivot(Table table, CategoricalColumn<?> column1, CategoricalColumn<?> column2, NumericColumn<?> values, AggregateFunction<?,?> aggregateFunction)Returns a table that is a rotation of the given table pivoted around the key columns, and filling the output cells using the values calculated by theaggregateFunctionwhen applied to thevalues columngrouping by the key columnsstatic DoubleAggregateFunctions. sumDifference(NumericColumn<?> column1, NumericColumn<?> column2)Returns the given sum difference of the values in the arguments
TODO(lwhite): These are two column reductions. -
Uses of NumericColumn in tech.tablesaw.api
Classes in tech.tablesaw.api that implement NumericColumn Modifier and Type Class Description classDoubleColumnA column that contains double valuesclassFloatColumnA column that contains float valuesclassIntColumnA column that contains int valuesclassLongColumnA column that contains long valuesclassNumberColumn<C extends NumberColumn<C,T>,T extends Number>An abstract class that provides a partial implementation for columns of numeric dataclassShortColumnA column that contains short valuesMethods in tech.tablesaw.api that return NumericColumn Modifier and Type Method Description abstract NumericColumn<T>NumberColumn. bottom(int n)Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingNumericColumn<T>NumericColumn. copy()Returns a deep copy of the receiverNumericColumn<T>NumericColumn. lag(int n)Returns a column of the same type and size as the receiver, containing the receivers values offset by n.default NumericColumn<T>NumericColumn. lead(int n)Returns a column of the same type as the receiver, containing the receivers values offset -n For example if you lead a column containing 2, 3, 4 by 1, you get a column containing 3, 4, NA.abstract NumericColumn<T>NumberColumn. top(int n)Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingdefault NumericColumn<T>NumericColumn. where(Selection selection)Returns the subset of data in this column included in the givenSelectionMethods in tech.tablesaw.api with parameters of type NumericColumn Modifier and Type Method Description default doubleNumericColumn. kendalls(NumericColumn<?> otherColumn)Returns the Kendall's Tau Rank correlation between the receiver and the otherColumndefault doubleNumericColumn. pearsons(NumericColumn<?> otherColumn)Returns the pearson's correlation between the receiver and the otherColumnTableTable. pivot(CategoricalColumn<?> column1, CategoricalColumn<?> column2, NumericColumn<?> column3, AggregateFunction<?,?> aggregateFunction)Returns a pivot on this table, where: The first column contains unique values from the index column1 There are n additional columns, one for each unique value in column2 The values in each of the cells in these new columns are the result of applying the given AggregateFunction to the data in column3, grouped by the values of column1 and column2DoubleColumnDoubleColumn. set(DoublePredicate condition, NumericColumn<?> other)Updates this column where values matching the selection are replaced with the corresponding value from the given columndefault doubleNumericColumn. spearmans(NumericColumn<?> otherColumn)Returns the Spearman's Rank correlation between the receiver and the otherColumn -
Uses of NumericColumn in tech.tablesaw.columns.numbers
Fields in tech.tablesaw.columns.numbers declared as NumericColumn Modifier and Type Field Description protected NumericColumn<T>NumberInterpolator. colMethods in tech.tablesaw.columns.numbers with parameters of type NumericColumn Modifier and Type Method Description default DoubleColumnNumberMapFunctions. add(NumericColumn<?> column2)static StatsStats. create(NumericColumn<?> values)Constructs a Stats object from the given columndefault DoubleColumnNumberMapFunctions. divide(NumericColumn<?> column2)default SelectionNumberFilters. isEqualTo(NumericColumn<?> d)default SelectionNumberFilters. isGreaterThan(NumericColumn<?> d)default SelectionNumberFilters. isGreaterThanOrEqualTo(NumericColumn<?> d)default SelectionNumberFilters. isLessThan(NumericColumn<?> d)default SelectionNumberFilters. isLessThanOrEqualTo(NumericColumn<?> d)default SelectionNumberFilters. isNotEqualTo(NumericColumn<?> d)default DoubleColumnNumberMapFunctions. multiply(NumericColumn<?> column2)default DoubleColumnNumberMapFunctions. power(NumericColumn<?> powerColumn)default DoubleColumnNumberMapFunctions. subtract(NumericColumn<?> column2)Constructors in tech.tablesaw.columns.numbers with parameters of type NumericColumn Constructor Description NumberInterpolator(NumericColumn<T> col)Constructs an interpolator for the given columnNumberRollingColumn(NumericColumn<?> column, int window) -
Uses of NumericColumn in tech.tablesaw.filtering
Methods in tech.tablesaw.filtering with parameters of type NumericColumn Modifier and Type Method Description Function<Table,Selection>DeferredNumberColumn. isEqualTo(NumericColumn<?> d)TNumberFilterSpec. isEqualTo(NumericColumn<?> d)Function<Table,Selection>DeferredNumberColumn. isGreaterThan(NumericColumn<?> d)TNumberFilterSpec. isGreaterThan(NumericColumn<?> d)Function<Table,Selection>DeferredNumberColumn. isGreaterThanOrEqualTo(NumericColumn<?> d)TNumberFilterSpec. isGreaterThanOrEqualTo(NumericColumn<?> d)Function<Table,Selection>DeferredNumberColumn. isLessThan(NumericColumn<?> d)TNumberFilterSpec. isLessThan(NumericColumn<?> d)Function<Table,Selection>DeferredNumberColumn. isLessThanOrEqualTo(NumericColumn<?> d)TNumberFilterSpec. isLessThanOrEqualTo(NumericColumn<?> d)Function<Table,Selection>DeferredNumberColumn. isNotEqualTo(NumericColumn<?> d)TNumberFilterSpec. isNotEqualTo(NumericColumn<?> d) -
Uses of NumericColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return NumericColumn Modifier and Type Method Description NumericColumn<?>Relation. nCol(int columnIndex)Returns the column with the given name cast to a NumberColumnNumericColumn<?>Relation. nCol(String columnName)Returns the column with the given name cast to a NumberColumn.NumericColumn<?>Relation. numberColumn(int columnIndex)Returns the NumberColumn at the given index.NumericColumn<?>Relation. numberColumn(String columnName)Returns a NumericColumn with the given name if it is present in this Relation.NumericColumn<?>[]Relation. numberColumns()Returns all the NumericColumns in this Relation as an ArrayMethods in tech.tablesaw.table that return types with arguments of type NumericColumn Modifier and Type Method Description List<NumericColumn<?>>Relation. numericColumns()Returns all the NumericColumns in the relationList<NumericColumn<?>>Relation. numericColumns(int... columnIndices)Returns all the NumericColumns in the relationList<NumericColumn<?>>Relation. numericColumns(String... columnNames)Returns all the NumericColumns in the relation -
Uses of NumericColumn in tech.tablesaw.util
Methods in tech.tablesaw.util with parameters of type NumericColumn Modifier and Type Method Description static double[][]DoubleArrays. to2dArray(NumericColumn<?>... columns)static double[][]DoubleArrays. to2dArray(NumericColumn<?> x, NumericColumn<?> y)Method parameters in tech.tablesaw.util with type arguments of type NumericColumn Modifier and Type Method Description static double[][]DoubleArrays. to2dArray(List<NumericColumn<?>> columnList)
-