Uses of Class
tech.tablesaw.api.ShortColumn
Packages that use ShortColumn
Package
Description
-
Uses of ShortColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return ShortColumnModifier and TypeMethodDescriptionShortColumn.append
(short 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 columnShortColumn.appendCell
(String value) Add one element to the bottom of this column and set its value to the parsed value of the given String.ShortColumn.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 parserShortColumn.appendMissing()
Appends a missing value appropriate to the columnAppends the given value to the bottom of this column and return this columnDoubleColumn.asShortColumn()
Returns a new ShortColumn containing a value for each value in this column, truncating if necessary.FloatColumn.asShortColumn()
Returns a new IntColumn containing a value for each value in this column, truncating if necessary.IntColumn.asShortColumn()
Returns a new ShortColumn containing a value for each value in this columnLongColumn.asShortColumn()
Returns a new ShortColumn containing a value for each value in this columndefault ShortColumn
NumericColumn.asShortColumn()
Returns a new ShortColumn containing a value for each value in this columnShortColumn.bottom
(int n) Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingShortColumn.copy()
Returns a deep copy of the receiverstatic ShortColumn
static ShortColumn
static ShortColumn
static ShortColumn
static ShortColumn
ShortColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.ShortColumn.removeMissing()
Returns a copy of this column with the missing values removedShortColumn.set
(int i, short 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 columnShortColumn.setMissing
(int i) Sets the value at index i to the missing-value indicator for this column type, and return this columnShortColumn.subset
(int[] rows) Return a column of the same type containing just those elements whose indexes are included in the given arrayShortColumn.top
(int n) Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingShortColumn.unique()
Returns a column of the same type containing only the unique values -
Uses of ShortColumn in tech.tablesaw.columns.numbers
Methods in tech.tablesaw.columns.numbers that return ShortColumn -
Uses of ShortColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type ShortColumnModifierConstructorDescriptionShortIndex
(ShortColumn column) Constructs an index for the given column -
Uses of ShortColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return ShortColumnModifier and TypeMethodDescriptionRelation.shortColumn
(int columnIndex) Returns the ShortColumn at the given 0-based index if present.Relation.shortColumn
(String columnName) Returns a ShortColumn with the given name if it is present in this Relation.