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 DataFrameJoinerTable. 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 DataFrameJoinerAbstractJoiner. allowDuplicateColumnNames(boolean allow)DataFrameJoinerDataFrameJoiner. allowDuplicateColumnNames(boolean allow)iffalsethe join will fail if any columns other than the join column have the same name; iftruethe join will succeed and duplicate columns are renamed and included in the results.abstract DataFrameJoinerAbstractJoiner. keepAllJoinKeyColumns(boolean keep)DataFrameJoinerDataFrameJoiner. 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 DataFrameJoinerAbstractJoiner. rightJoinColumns(String... rightJoinColumnNames)DataFrameJoinerDataFrameJoiner. rightJoinColumns(String... rightJoinColumnNames)The names of the columns to be joined on in the second (right) table.abstract DataFrameJoinerAbstractJoiner. type(JoinType joinType)DataFrameJoinerDataFrameJoiner. type(JoinType joinType)Sets the type of join, which defaults to INNER if not provided.abstract DataFrameJoinerAbstractJoiner. with(Table... tables)DataFrameJoinerDataFrameJoiner. with(Table... tables)The table or tables to be used on the right side of the join.
-