F# Series extensionsSeries Class |
Namespace: Deedle
[SerializableAttribute] public class Series
The F# Series extensionsSeries type exposes the following members.
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ofNullablesa |
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.
| |
ofObservationsa, 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.
| |
ofOptionalObservationsK, 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.
| |
ofValuesa |
Create a series from the specified sequence of values. The keys
of the resulting series are generated ordinarilly, starting from 0.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |