Series
Namespace: Deedle
Parent Module: F# Series extensions
Static members
Static member | Description |
ofNullables(values)
Signature: values:seq<Nullable<'?497360>> -> Series<int,'?497360>
Type parameters: '?497360
|
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.
|
ofObservations(observations)
Signature: (observations:seq<'?497355 * '?497356>) -> Series<'?497355,'?497356>
Type parameters: '?497355, '?497356
|
Create a series from a sequence of key-value pairs that represent
the observations of the series. Consider using a shorthand
series function instead.
|
ofOptionalObservations(observations)
Signature: (observations:seq<'K * '?497363 option>) -> Series<'K,'?497363>
Type parameters: 'K, '?497363
|
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.
|
ofValues(values)
Signature: values:seq<'?497358> -> Series<int,'?497358>
Type parameters: '?497358
|
Create a series from the specified sequence of values. The keys
of the resulting series are generated ordinarilly, starting from 0.
|