Click or drag to resize
ColumnSeriesTRowKey, TColumnKey Properties

The ColumnSeriesTRowKey, TColumnKey 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]
(Inherited from SeriesK, V.)
Public propertyIsEmpty
[category:Series data]
(Inherited from SeriesK, V.)
Public propertyIsOrdered
[category:Series data]
(Inherited from SeriesK, V.)
Public propertyItemIEnumerableTColumnKey
Public propertyItemK
[category:Accessors and slicing]
(Inherited from SeriesK, V.)
Public propertyItemICustomLookupTColumnKey
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]
(Inherited from SeriesK, V.)
Public propertyKeyRange
[category:Series data]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
Public propertyReversed
[category:Projection and filtering]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
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]
(Inherited from SeriesK, V.)
Top
See Also