Click or drag to resize
F# Series extensions Class
Contains extensions for creating values of type `Series<'K, 'V>` including a type with functions such as `Series.ofValues` and the `series` function. The module is automatically opened for all F# code that references `Deedle`. [category:Core frame and series types]
Inheritance Hierarchy
SystemObject
  DeedleF# Series extensions

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static class F# Series extensions

The F# Series extensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberseriesa, b
Create a series from a sequence of key-value pairs that represent the observations of the series. This function can be used together with the `=>` operator to create key-value pairs. ## Example // Creates a series with squares of numbers let sqs = series [ 1 => 1.0; 2 => 4.0; 3 => 9.0 ]
Top
See Also