SeriesStatsExtensions
Namespace: Deedle
Attributes:
[<Extension>]
The type implements C# and F# extension methods that add numerical operations to Deedle series.
Table of contents
Calculations, aggregation and statistics
Static members
Statistics
Static members
Static member | Description |
SeriesStatsExtensions.Kurtosis(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the kurtosis of the elements of the series. |
SeriesStatsExtensions.Max(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the greatest of all elements of the series. |
SeriesStatsExtensions.MaxLevel(...)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,'V>
Type parameters: 'K1, 'V, 'K2 Attributes: [<Extension>] |
Groups the elements of the input series in groups based on the keys
produced by This operation is designed to be used with hierarchical indexing. Parameters
|
SeriesStatsExtensions.Mean(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the mean of the elements of the series. |
SeriesStatsExtensions.MeanLevel(...)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, 'V, 'K2 Attributes: [<Extension>] |
Groups the elements of the input series in groups based on the keys
produced by This operation is designed to be used with hierarchical indexing. Parameters
|
SeriesStatsExtensions.Median(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the median of the elements of the series. |
SeriesStatsExtensions.MedianLevel(...)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, 'V, 'K2 Attributes: [<Extension>] |
Groups the elements of the input series in groups based on the keys
produced by This operation is designed to be used with hierarchical indexing. Parameters
|
SeriesStatsExtensions.Min(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the smallest of all elements of the series. |
SeriesStatsExtensions.MinLevel(...)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,'V>
Type parameters: 'K1, 'V, 'K2 Attributes: [<Extension>] |
Groups the elements of the input series in groups based on the keys
produced by This operation is designed to be used with hierarchical indexing. Parameters
|
SeriesStatsExtensions.NumSum(series)
Signature: series:Series<'K,^V> -> ^V
Type parameters: 'K, ^V Attributes: [<Extension>] |
Returns the sum of the elements of the series of numeric values. |
SeriesStatsExtensions.Skewness(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the skewness of the elements of the series. |
SeriesStatsExtensions.StdDev(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the standard deviation of the elements of the series. |
SeriesStatsExtensions.StdDevLevel(...)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, 'V, 'K2 |
Groups the elements of the input series in groups based on the keys
produced by This operation is designed to be used with hierarchical indexing. Parameters
|
SeriesStatsExtensions.Sum(series)
Signature: series:Series<'K,'V> -> float
Type parameters: 'K, 'V Attributes: [<Extension>] |
Returns the sum of the elements of the series of float values. |
SeriesStatsExtensions.SumLevel(...)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, 'V, 'K2 Attributes: [<Extension>] |
Groups the elements of the input series in groups based on the keys
produced by This operation is designed to be used with hierarchical indexing. Parameters
|