FrameColumn Class

Represents one column of a data frame.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public sealed class FrameColumn : IEnumerable
Inheritance
Object    FrameColumn
Implements
IEnumerable

Remarks

To obtained strongly typed values of the data in the column, use the As method.

Properties

Count Gets the number of values in the column.
Item Gets the value at the given index.
Name Gets the name of the column.
StorageType Gets the type of data stored in the column.

Methods

AsT Exposes the column as a list of uniform type.
AsTIn, TOut(FuncTIn, TOut) Returns a transformation of the column as a typed list.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also