Deedle


Index

Type that provides access to creating indices (represented as LinearIndex values)

Static members

Static memberDescription
Index.Create(keys)
Signature:keys:seq<'T> -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and check if they are sorted or not

Index.CreateUnordered(keys)
Signature:keys:seq<'T> -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).

Fork me on GitHub