Header menu logo Deedle

Series Type

Static members

Static member Description

Series.ofNullables values

Full Usage: Series.ofNullables values

Parameters:
Returns: Series<int, 'a>

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.

values : Nullable<'a> seq
Returns: Series<int, 'a>

Series.ofObservations observations

Full Usage: Series.ofObservations observations

Parameters:
    observations : ('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.

observations : ('a * 'b) seq
Returns: Series<'a, 'b>

Series.ofOptionalObservations observations

Full Usage: Series.ofOptionalObservations observations

Parameters:
    observations : ('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.

observations : ('K * 'a option) seq
Returns: Series<'K, 'a>

Series.ofValues values

Full Usage: Series.ofValues values

Parameters:
    values : 'a seq

Returns: Series<int, 'a>

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

values : 'a seq
Returns: Series<int, 'a>

Type something to start searching.