Deedle


ISeries<'K>

Namespace: Deedle

Represents an untyped series with keys of type K and values of some unknown type (This type should not generally be used directly, but it can be used when you need to write code that works on a sequence of series of heterogeneous types).

Instance members

Instance memberDescription
Index
Signature: IIndex<'K>
Modifiers: abstract

Returns the index containing keys of the series

TryGetObject(arg1)
Signature: 'K -> OptionalValue<obj>
Modifiers: abstract

Attempts to get the value at a specified key and return it as obj

Vector
Signature: IVector
Modifiers: abstract

Returns the vector containing data of the series (as an untyped vector)

VectorBuilder
Signature: IVectorBuilder
Modifiers: abstract

Returns the vector builder associated with this series

Fork me on GitHub