Deedle


Vector

Namespace: Deedle.Vectors

Type that provides access to creating vectors (represented as arrays)

Static members

Static memberDescription
Vector.Create(data)
Signature: data:seq<'T> -> IVector<'T>
Type parameters: 'T Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates a vector that stores the specified data in an array. Values such as null and Double.NaN are turned into missing values.

Vector.Create(data)
Signature: (data:'T []) -> IVector<'T>
Type parameters: 'T Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates a vector that stores the specified data in an array. Values such as null and Double.NaN are turned into missing values.

Vector.CreateMissing(data)
Signature: data:seq<Nullable<'T>> -> IVector<'T>
Type parameters: 'T Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates a vector that stores the specified data in an array. Values such as null and Double.NaN are turned into missing values.

Vector.CreateMissing(data)
Signature: data:seq<OptionalValue<'T>> -> IVector<'T>
Type parameters: 'T Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates a vector that stores the specified data in an array. Values such as null and Double.NaN are turned into missing values.

Fork me on GitHub