Deedle


VectorData<'T>

Namespace: Deedle.Vectors
Attributes:
[<RequireQualifiedAccess>]

Provides a way to get the data of an arbitrary vector. This is a concrete type used by functions that operate on vectors (like Series.sum, etc.). The vector may choose to return the data as ReadOnlyCollection (with or without N/A values) which is more efficient to use or as a lazy sequence (slower, but more general).

Union Cases

Union CaseDescription
DenseList(ReadOnlyCollection<'T>)
Signature: ReadOnlyCollection<'T>
Sequence(seq<OptionalValue<'T>>)
Signature: seq<OptionalValue<'T>>
SparseList(...)
Signature: ReadOnlyCollection<OptionalValue<'T>>
Fork me on GitHub