Uses of Class
tech.tablesaw.api.TextColumn
Packages that use TextColumn
-
Uses of TextColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return TextColumnModifier and TypeMethodDescriptionAdd all the strings in the list to this columnAdded for naming consistency with all other columnsAppends all the values in the argument to the bottom of this column and return this columnTextColumn.appendCell
(String object) Add one element to the bottom of this column and set its value to the parsed value of the given String.TextColumn.appendCell
(String object, 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 parserTextColumn.appendMissing()
Appends the given value to the bottom of this column and return this columnStringColumn.asTextColumn()
TextColumn.copy()
Returns a deep copy of the receiverstatic TextColumn
static TextColumn
static TextColumn
static TextColumn
TextColumn.create
(String name, Collection<String> strings) static TextColumn
TextColumn.emptyCopy()
Returns a copy of the receiver with no data.TextColumn.emptyCopy
(int rowSize) Returns an empty copy of the receiver, with its internal storage initialized to the given row size.TextColumn.lag
(int n) Returns a column of the same type and size as the receiver, containing the receivers values offset by n.TextColumn.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.TextColumn.removeMissing()
Returns a copy of this column with the missing values removedSets the value at index row to the given value and return this columnConditionally update this column, replacing current values with newValue for all rows where the current value matches the selection criteriaTextColumn.setMissing
(int i) Sets the value at index i to the missing-value indicator for this column type, and return this columnTextColumn.unique()
Returns a new Column containing all the unique values in this columnReturns a new column containing the subset referenced by theSelection
-
Uses of TextColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return TextColumn -
Uses of TextColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return TextColumnModifier and TypeMethodDescriptionRelation.textColumn
(int columnIndex) Returns the TextColumn at the given 0-based index if present.Relation.textColumn
(String columnName) Returns a TextColumn with the given name if it is present in this Relation.