Interface MutableDataFrame<R,​C,​V>

    • Method Detail

      • setValueAt

        void setValueAt​(R row,
                        C column,
                        V value)
        Sets the value for the cell at the intersection of the column key and row key.
        Parameters:
        row - the row key whose value is to be changed
        column - the column key whose value is to be changed
        value - the new value at the specified cell
      • reindexRows

        MutableDataFrame<V,​C,​V> reindexRows​(C column)
        Returns a new data frame reindexed using the values coming from the specified column.
        Specified by:
        reindexRows in interface DataFrame<R,​C,​V>
        Parameters:
        column - the column to use for the label values
        Returns:
        the reindexed data frame.
      • reindexRows

        MutableDataFrame<MultiKey,​C,​V> reindexRows​(C... rows)
        Returns a new data frame reindexed using the values coming from the specified columns.
        Specified by:
        reindexRows in interface DataFrame<R,​C,​V>
        Parameters:
        rows - the columns to use for the label values
        Returns:
        the reindexed data frame.