Uses of Class
tech.tablesaw.table.Relation
-
Packages that use Relation Package Description tech.tablesaw.api tech.tablesaw.conversion tech.tablesaw.conversion.smile tech.tablesaw.io.string tech.tablesaw.table -
-
Uses of Relation in tech.tablesaw.api
Subclasses of Relation in tech.tablesaw.api Modifier and Type Class Description class
Table
A table of data, consisting of some number of columns, each of which has the same number of rows.Methods in tech.tablesaw.api with parameters of type Relation Modifier and Type Method Description Table
Table. append(Relation tableToAppend)
Returns this table after adding the data from the argument -
Uses of Relation in tech.tablesaw.conversion
Constructors in tech.tablesaw.conversion with parameters of type Relation Constructor Description TableConverter(Relation table)
-
Uses of Relation in tech.tablesaw.conversion.smile
Constructors in tech.tablesaw.conversion.smile with parameters of type Relation Constructor Description SmileConverter(Relation table)
-
Uses of Relation in tech.tablesaw.io.string
Methods in tech.tablesaw.io.string with parameters of type Relation Modifier and Type Method Description void
DataFramePrinter. print(Relation frame)
Prints the specified DataFrame to the stream bound to this printer -
Uses of Relation in tech.tablesaw.table
Subclasses of Relation in tech.tablesaw.table Modifier and Type Class Description class
TableSlice
A TableSlice is a facade around a Relation that acts as a filter.Methods in tech.tablesaw.table that return Relation Modifier and Type Method Description abstract Relation
Relation. addColumns(Column<?>... cols)
Adds the given columns to this Relation and returns the same relation.Relation
Relation. removeColumns(int... columnIndexes)
Removes the columns at the given 0-based indices from this Relation and returns the same relation.Relation
Relation. removeColumns(String... columnName)
Removes the columns with the given namesfrom this Relation and returns the same relation.abstract Relation
Relation. removeColumns(Column<?>... columns)
Removes the given columns from this Relation and returns the same relation.abstract Relation
Relation. setName(String name)
Sets the name of this Relation and returns the same relation.
-