LoadColumnAttribute Constructors

Definition

Overloads

LoadColumnAttribute(Int32)

Maps member to specific field in text file.

LoadColumnAttribute(Int32[])

Maps member to set of fields in text file.

LoadColumnAttribute(Int32, Int32)

Maps member to range of fields in text file.

LoadColumnAttribute(Int32)

Maps member to specific field in text file.

public LoadColumnAttribute (int fieldIndex);
new Microsoft.ML.Data.LoadColumnAttribute : int -> Microsoft.ML.Data.LoadColumnAttribute
Public Sub New (fieldIndex As Integer)

Parameters

fieldIndex
Int32

The index of the field in the text file.

Applies to

LoadColumnAttribute(Int32[])

Maps member to set of fields in text file.

public LoadColumnAttribute (int[] columnIndexes);
new Microsoft.ML.Data.LoadColumnAttribute : int[] -> Microsoft.ML.Data.LoadColumnAttribute
Public Sub New (columnIndexes As Integer())

Parameters

columnIndexes
Int32[]

Distinct text file field indices to load as part of this column.

Applies to

LoadColumnAttribute(Int32, Int32)

Maps member to range of fields in text file.

public LoadColumnAttribute (int start, int end);
new Microsoft.ML.Data.LoadColumnAttribute : int * int -> Microsoft.ML.Data.LoadColumnAttribute
Public Sub New (start As Integer, end As Integer)

Parameters

start
Int32

The starting field index, for the range.

end
Int32

The ending field index, for the range.

Applies to