Contents

intersect(_:of:)

Creates a subset of the table by including the rows that contain any of the given values in the given column.

Declaration

func intersect<T>(_ values: T..., of columnNamed: String) -> MLDataTable where T : MLDataValueConvertible

Parameters

  • values:

    The values to include from the new table.

  • columnNamed:

    The name of the column to search for included values.

Return Value

A new data table.

See Also

Selecting rows