Series Type
Static members
| Static member |
Description
|
|
|
Full Usage:
Series.ofObservations observations
Parameters:
('a * 'b) seq
Returns: Series<'a, 'b>
|
Create a series from a sequence of key-value pairs that represent the observations of the series. Consider using a shorthand `series` function instead.
|
Full Usage:
Series.ofOptionalObservations observations
Parameters:
('K * 'a option) seq
Returns: Series<'K, 'a>
|
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.
|
|
Create a series from the specified sequence of values. The keys of the resulting series are generated ordinarilly, starting from 0.
|
Deedle