Deedle


Series

Namespace: Deedle
Parent Module: F# Series extensions

Static members

Static memberDescription
Series.ofNullables(values)
Signature: values:seq<Nullable<'?690357>> -> Series<int,'?690357>
Type parameters: '?690357

Create a series from a sequence of nullable values. The keys of the resulting series are generated ordinarilly, starting from 0. The resulting series will contain keys associated with the null values, but the values are treated as missing.

Series.ofObservations(observations)
Signature: (observations:seq<'c * 'd>) -> Series<'c,'d>
Type parameters: 'c, 'd

Create a series from a sequence of key-value pairs that represent the observations of the series. Consider using a shorthand series function instead.

Series.ofOptionalObservations(...)
Signature: (observations:seq<'K * '?690360 option>) -> Series<'K,'?690360>
Type parameters: 'K, '?690360

Create a series from a sequence of observations where the value is of type option<'T>. When the value is None, the key remains in the series, but the value is treated as missing.

Series.ofValues(values)
Signature: values:seq<'a> -> Series<int,'a>
Type parameters: 'a

Create a series from the specified sequence of values. The keys of the resulting series are generated ordinarilly, starting from 0.

Fork me on GitHub