Click or drag to resize
F# Series extensionsSeries Class
Inheritance Hierarchy
SystemObject
  DeedleF# Series extensionsSeries

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
[SerializableAttribute]
public class Series

The F# Series extensionsSeries type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberofNullablesa
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.
Public methodStatic memberofObservationsa, 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.
Public methodStatic memberofOptionalObservationsK, 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.
Public methodStatic memberofValuesa
Create a series from the specified sequence of values. The keys of the resulting series are generated ordinarilly, starting from 0.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also