Click or drag to resize
SeriesK, V Properties

The SeriesK, V generic type exposes the following members.

Properties
  NameDescription
Public propertyIndex
Returns the index associated with this series. This member should not generally be accessed directly, because all functionality is exposed through series operations. [category:Series data]
Public propertyIsEmpty
[category:Series data]
Public propertyIsOrdered
[category:Series data]
Public propertyItemIEnumerableK
[category:Accessors and slicing]
Public propertyItemK
[category:Accessors and slicing]
Public propertyItemICustomLookupK
[category:Accessors and slicing]
Public propertyKeyCount
Returns the total number of keys in the specified series. This returns the total length of the series, including keys for which there is no value available. [category:Series data]
Public propertyKeyRange
[category:Series data]
Public propertyKeys
Returns a collection of keys that are defined by the index of this series. Note that the length of this sequence does not match the `Values` sequence if there are missing values. To get matching sequence, use the `Observations` property or `Series.observation`. [category:Series data]
Public propertyObservations
Returns a collection of observations that form this series. Note that this property skips over all missing (or NaN) values. Observations are returned as `KeyValuePair<K, V>` objects. For an F# alternative that uses tuples, see `Series.observations`. [category:Series data]
Public propertyObservationsAll
Returns a collection of observations that form this series. Note that this property includes all missing (or NaN) values. Observations are returned as `KeyValuePair<K, OptionalValue<V>>` objects. For an F# alternative that uses tuples, see `Series.observationsAll`. [category:Series data]
Public propertyReversed
[category:Projection and filtering]
Public propertyValueCount
Returns the total number of values in the specified series. This excludes missing values or not available values (such as values created from `null`, `Double.NaN`, or those that are missing due to outer join etc.). [category:Series data]
Public propertyValues
Returns a collection of values that are available in the series data. Note that the length of this sequence does not match the `Keys` sequence if there are missing values. To get matching sequence, use the `Observations` property or `Series.observation`. [category:Series data]
Public propertyValuesAll
Returns a collection of values, including possibly missing values. Note that the length of this sequence matches the `Keys` sequence. [category:Series data]
Public propertyVector
Returns the vector associated with this series. This member should not generally be accessed directly, because all functionality is exposed through series operations. [category:Series data]
Top
See Also