F# Series extensions Methods |
The F# Series extensions type exposes the following members.
Name | Description | |
---|---|---|
seriesa, 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 ]
|