Package | Description |
---|---|
tech.tablesaw.api | |
tech.tablesaw.columns.strings | |
tech.tablesaw.table |
Modifier and Type | Method and Description |
---|---|
TextColumn |
TextColumn.addAll(List<String> stringValues)
Add all the strings in the list to this column
|
TextColumn |
TextColumn.append(Column<String> column) |
TextColumn |
TextColumn.append(String value)
Added for naming consistency with all other columns
|
TextColumn |
TextColumn.appendCell(String object) |
TextColumn |
TextColumn.appendCell(String object,
AbstractColumnParser<?> parser) |
TextColumn |
TextColumn.appendMissing() |
TextColumn |
TextColumn.appendObj(Object obj) |
TextColumn |
StringColumn.asTextColumn() |
TextColumn |
TextColumn.copy() |
static TextColumn |
TextColumn.create(String name) |
static TextColumn |
TextColumn.create(String name,
int size) |
static TextColumn |
TextColumn.create(String name,
List<String> strings) |
static TextColumn |
TextColumn.create(String name,
Stream<String> stream) |
static TextColumn |
TextColumn.create(String name,
String[] strings) |
TextColumn |
TextColumn.emptyCopy() |
TextColumn |
TextColumn.emptyCopy(int rowSize) |
TextColumn |
TextColumn.lag(int n) |
TextColumn |
TextColumn.lead(int n) |
TextColumn |
TextColumn.removeMissing() |
TextColumn |
TextColumn.set(int rowIndex,
String stringValue) |
TextColumn |
TextColumn.set(Selection rowSelection,
String newValue)
Conditionally update this column, replacing current values with newValue for all rows where the
current value matches the selection criteria
|
TextColumn |
TextColumn.unique()
Returns a new Column containing all the unique values in this column
|
TextColumn |
TextColumn.where(Selection selection) |
Modifier and Type | Method and Description |
---|---|
TextColumn |
TextColumnType.create(String name) |
Modifier and Type | Method and Description |
---|---|
TextColumn |
Relation.textColumn(int columnIndex) |
TextColumn |
Relation.textColumn(String columnName) |
Copyright © 2020. All rights reserved.