Package tech.tablesaw.table
Class Rows
java.lang.Object
tech.tablesaw.table.Rows
Deprecated.
A static utility class for row operations
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
appendRowToTable
(int row, Table oldTable, Table newTable) Deprecated.Use the instance methodTable.append(Row)
insteadstatic boolean
compareRows
(int rowInOriginal, Table original, Table tempTable) Deprecated.Use the static methodTable.compareRows(int, Table, Table)
insteadstatic void
copyRowsToTable
(int[] rows, Table oldTable, Table newTable) Deprecated.Use the instance methodTable.copyRowsToTable(int[], Table)
insteadstatic void
copyRowsToTable
(Selection rows, Table oldTable, Table newTable) Deprecated.Use the instance method {Table:where(Selection} insteadstatic void
Deprecated.UseTable.first(int)
insteadstatic void
Deprecated.UseTable.last(int)
instead
-
Method Details
-
copyRowsToTable
Deprecated.Use the instance method {Table:where(Selection} insteadCopies the rows indicated by the row index values in the given selection from oldTable to newTable -
copyRowsToTable
Deprecated.Use the instance methodTable.copyRowsToTable(int[], Table)
insteadCopies the rows indicated by the row index values in the given array from oldTable to newTable -
appendRowToTable
Deprecated.Use the instance methodTable.append(Row)
insteadAppends a row from oldTable to newTable -
compareRows
Deprecated.Use the static methodTable.compareRows(int, Table, Table)
instead -
head
Deprecated.UseTable.first(int)
insteadCopies the first n rows to a new table -
tail
Deprecated.UseTable.last(int)
insteadCopies the last n rows to a new table
-
Table
class hierarchy, and/or by methods inRow