DataFrameColumnCollection.GetPrimitiveColumn<T>(String) Method

Definition

Gets the PrimitiveDataFrameColumn<T> with the specified name.

public Microsoft.Data.Analysis.PrimitiveDataFrameColumn<T> GetPrimitiveColumn<T> (string name) where T : struct;
member this.GetPrimitiveColumn : string -> Microsoft.Data.Analysis.PrimitiveDataFrameColumn<'T (requires 'T : struct)> (requires 'T : struct)
Public Function GetPrimitiveColumn(Of T As Structure) (name As String) As PrimitiveDataFrameColumn(Of T)

Type Parameters

T

Parameters

name
String

The name of the column

Returns

PrimitiveDataFrameColumn<T>.

Exceptions

A column named name cannot be found, or if the column's type doesn't match.

Applies to