SeriesStatsExtensions
Namespace: Deedle
The type implements C# and F# extension methods that add numerical operations
to Deedle series. With a few exceptions, the methods are only available for
series containing floating-point values, that is Series<'K, float>
.
Table of contents
Calculations, aggregation and statistics
Static members
Statistics
Static members
Static member | Description |
Kurtosis(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |
Returns the kurtosis of the elements of the series. |
Max(series)
Signature: series:Series<'K,'V> -> 'V
Type parameters: 'K, 'V |
Returns the greatest of all elements of the series. |
MaxLevel(series, groupSelector)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,'V>
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
|
Mean(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |
Returns the mean of the elements of the series. |
MeanLevel(series, groupSelector)
Signature: (series:Series<'K1,float> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, '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
|
Median(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |
Returns the median of the elements of the series. |
MedianLevel(series, groupSelector)
Signature: (series:Series<'K1,float> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, '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
|
Min(series)
Signature: series:Series<'K,'V> -> 'V
Type parameters: 'K, 'V |
Returns the smallest of all elements of the series. |
MinLevel(series, groupSelector)
Signature: (series:Series<'K1,'V> * groupSelector:Func<'K1,'K2>) -> Series<'K2,'V>
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
|
NumSum(series)
Signature: series:Series<'K,^V> -> ^V
Type parameters: 'K, ^V |
Returns the sum of the elements of the series of numeric values. |
Skewness(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |
Returns the skewness of the elements of the series. |
StdDev(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |
Returns the standard deviation of the elements of the series. |
StdDevLevel(series, groupSelector)
Signature: (series:Series<'K1,float> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, '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
|
Sum(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |
Returns the sum of the elements of the series of float values. |
SumLevel(series, groupSelector)
Signature: (series:Series<'K1,float> * groupSelector:Func<'K1,'K2>) -> Series<'K2,float>
Type parameters: 'K1, '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
|
Other type members
Static members
Static member | Description |
StandardDeviation(series)
Signature: series:Series<'K,float> -> float
Type parameters: 'K |