Contents

joined(_:on:kind:)

Generates a data frame by joining with another data frame type with a common column that you select by identifier.

Declaration

func joined<R, T>(_ other: R, on columnID: ColumnID<T>, kind: JoinKind = .inner) -> DataFrame where R : DataFrameProtocol, T : Hashable

Parameters

  • other:

    A data frame type that represents the right side of the join.

  • columnID:

    A column identifier that exists in both data frame types.

  • kind:

    A join operation type.

Return Value

A new data frame.

See Also

Creating a Data Frame by Joining Another Data Frame