Class Rows

java.lang.Object
tech.tablesaw.table.Rows

@Immutable @Deprecated public final class Rows extends Object
Deprecated.
Functionality provided by this class is methods in the Table class hierarchy, and/or by methods in Row
A static utility class for row operations
  • Method Details

    • copyRowsToTable

      @Deprecated public static void copyRowsToTable(Selection rows, Table oldTable, Table newTable)
      Deprecated.
      Use the instance method {Table:where(Selection} instead
      Copies the rows indicated by the row index values in the given selection from oldTable to newTable
    • copyRowsToTable

      @Deprecated public static void copyRowsToTable(int[] rows, Table oldTable, Table newTable)
      Deprecated.
      Use the instance method Table.copyRowsToTable(int[], Table) instead
      Copies the rows indicated by the row index values in the given array from oldTable to newTable
    • appendRowToTable

      @Deprecated public static void appendRowToTable(int row, Table oldTable, Table newTable)
      Deprecated.
      Use the instance method Table.append(Row) instead
      Appends a row from oldTable to newTable
    • compareRows

      @Deprecated public static boolean compareRows(int rowInOriginal, Table original, Table tempTable)
      Deprecated.
      Use the static method Table.compareRows(int, Table, Table) instead
    • head

      @Deprecated public static void head(int rowCount, Table oldTable, Table newTable)
      Deprecated.
      Use Table.first(int) instead
      Copies the first n rows to a new table
    • tail

      @Deprecated public static void tail(int rowsToInclude, Table oldTable, Table newTable)
      Deprecated.
      Use Table.last(int) instead
      Copies the last n rows to a new table