Contents

append(column:)

Adds a typed column to the end of the data frame.

Declaration

mutating func append<T>(column: Column<T>)

Parameters

  • column:

    A typed column. The column must have the same number of rows as the data frame, and must not have the same name as another column in the data frame.

Discussion

The column you append becomes the last column and has the highest index in the data frame.

See Also

Adding a Column