Uses of Class
tech.tablesaw.joining.DataFrameJoiner
-
Packages that use DataFrameJoiner Package Description tech.tablesaw.api tech.tablesaw.joining -
-
Uses of DataFrameJoiner in tech.tablesaw.api
Methods in tech.tablesaw.api that return DataFrameJoiner Modifier and Type Method Description DataFrameJoiner
Table. joinOn(String... columnNames)
Returns a new DataFrameJoiner initialized with multiplecolumnNames
-
Uses of DataFrameJoiner in tech.tablesaw.joining
Methods in tech.tablesaw.joining that return DataFrameJoiner Modifier and Type Method Description abstract DataFrameJoiner
AbstractJoiner. allowDuplicateColumnNames(boolean allow)
DataFrameJoiner
DataFrameJoiner. allowDuplicateColumnNames(boolean allow)
iffalse
the join will fail if any columns other than the join column have the same name; iftrue
the join will succeed and duplicate columns are renamed and included in the results.abstract DataFrameJoiner
AbstractJoiner. keepAllJoinKeyColumns(boolean keep)
DataFrameJoiner
DataFrameJoiner. keepAllJoinKeyColumns(boolean keep)
When the argument is true, the join columns of the second (and subsequent) tables are included in the results, even when they're identical in name and data with the first join table.abstract DataFrameJoiner
AbstractJoiner. rightJoinColumns(String... rightJoinColumnNames)
DataFrameJoiner
DataFrameJoiner. rightJoinColumns(String... rightJoinColumnNames)
The names of the columns to be joined on in the second (right) table.abstract DataFrameJoiner
AbstractJoiner. type(JoinType joinType)
DataFrameJoiner
DataFrameJoiner. type(JoinType joinType)
Sets the type of join, which defaults to INNER if not provided.abstract DataFrameJoiner
AbstractJoiner. with(Table... tables)
DataFrameJoiner
DataFrameJoiner. with(Table... tables)
The table or tables to be used on the right side of the join.
-