Uses of Class
tech.tablesaw.api.FloatColumn
Packages that use FloatColumn
Package
Description
-
Uses of FloatColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return FloatColumnModifier and TypeMethodDescriptionFloatColumn.append
(float i) Appends value to the bottom of this column and return this columnAppends all the values in the argument to the bottom of this column and return this columnAppends the value at the given row in the given column to the bottom of this column and return this columnFloatColumn.appendCell
(String value) Add one element to the bottom of this column and set its value to the parsed value of the given String.FloatColumn.appendCell
(String value, AbstractColumnParser<?> parser) Add one element to the bottom of this column and set its value to the parsed value of the given String, as performed by the given parserFloatColumn.appendMissing()
Appends a missing value appropriate to the columnAppends the given value to the bottom of this column and return this columnDoubleColumn.asFloatColumn()
Returns a new FloatColumn containing a value for each value in this column, truncating if necessary.IntColumn.asFloatColumn()
Returns a new FloatColumn containing a value for each value in this column, truncating if necessary.LongColumn.asFloatColumn()
Returns a new FloatColumn containing a value for each value in this columndefault FloatColumn
NumericColumn.asFloatColumn()
Returns a new FloatColumn containing a value for each value in this columnShortColumn.asFloatColumn()
Returns a new FloatColumn containing a value for each value in this column, truncating if necessary.FloatColumn.bottom
(int n) Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingFloatColumn.copy()
Returns a deep copy of the receiverstatic FloatColumn
static FloatColumn
static FloatColumn
static FloatColumn
static FloatColumn
FloatColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.FloatColumn.removeMissing()
Returns a copy of this column with the missing values removedFloatColumn.set
(int i, float val) Sets the value at index row to the given value and return this columnSets the value at row to the value at sourceRow in the given column and return this columnFloatColumn.setMissing
(int i) Sets the value at index i to the missing-value indicator for this column type, and return this columnFloatColumn.subset
(int[] rows) Return a column of the same type containing just those elements whose indexes are included in the given arrayFloatColumn.top
(int n) Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingFloatColumn.unique()
Returns a column of the same type containing only the unique values -
Uses of FloatColumn in tech.tablesaw.columns.numbers
Methods in tech.tablesaw.columns.numbers that return FloatColumnModifier and TypeMethodDescriptionReturns a column of this type with the given name -
Uses of FloatColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return FloatColumnModifier and TypeMethodDescriptiondefault FloatColumn
StringMapFunctions.parseFloat()
Returns an Float containing all the values of this string column as floats, assuming all the values are stringified floats in the first place. -
Uses of FloatColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type FloatColumnModifierConstructorDescriptionFloatIndex
(FloatColumn column) Constructs an index for the given column -
Uses of FloatColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return FloatColumnModifier and TypeMethodDescriptionRelation.floatColumn
(int columnIndex) Returns the FloatColumn at the given 0-based index if present.Relation.floatColumn
(String columnName) Returns a FloatColumn with the given name if it is present in this Relation.