Click or drag to resize
F# Series extensionsSeriesofOptionalObservationsK, a Method
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.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, a> ofOptionalObservations<K, a>(
	IEnumerable<Tuple<K, FSharpOption<a>>> observations
)

Parameters

observations
Type: System.Collections.GenericIEnumerableTupleK, FSharpOptiona

[Missing <param name="observations"/> documentation for "M:Deedle.F# Series extensions.Series.ofOptionalObservations``2(System.Collections.Generic.IEnumerable{System.Tuple{``0,Microsoft.FSharp.Core.FSharpOption{``1}}})"]

Type Parameters

K
a

Return Value

Type: SeriesK, a

[Missing <returns> documentation for "M:Deedle.F# Series extensions.Series.ofOptionalObservations``2(System.Collections.Generic.IEnumerable{System.Tuple{``0,Microsoft.FSharp.Core.FSharpOption{``1}}})"]

See Also