Package tech.tablesaw.table
Class StandardTableSliceGroup
- java.lang.Object
-
- tech.tablesaw.table.TableSliceGroup
-
- tech.tablesaw.table.StandardTableSliceGroup
-
- All Implemented Interfaces:
Iterable<TableSlice>
public class StandardTableSliceGroup extends TableSliceGroup
A group of tables formed by performing splitting operations on an original table
-
-
Field Summary
-
Fields inherited from class tech.tablesaw.table.TableSliceGroup
SPLIT_STRING
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StandardTableSliceGroup
create(Table original, String... columnsNames)
Returns a viewGroup splitting the original table on the given columns.static StandardTableSliceGroup
create(Table original, CategoricalColumn<?>... columns)
Returns a viewGroup splitting the original table on the given columns.-
Methods inherited from class tech.tablesaw.table.TableSliceGroup
addSlice, aggregate, aggregate, aggregateColumnName, asTableList, get, getByteSize, getSlices, getSourceTable, getSplitColumnNames, iterator, setSourceTable, size, summaryTableName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
create
public static StandardTableSliceGroup create(Table original, String... columnsNames)
Returns a viewGroup splitting the original table on the given columns. The named columns must be CategoricalColumns
-
create
public static StandardTableSliceGroup create(Table original, CategoricalColumn<?>... columns)
Returns a viewGroup splitting the original table on the given columns. The named columns must be CategoricalColumns
-
-