EnumerableStatsPearson
01 Syntax
Microsoft.VisualBasic.Math.Statistics.Linq.EnumerableStatsPearson
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| Pearson | 3 | Computes the Pearson of a sequence of System.Double values. |
03 Members
Pearson(
IEnumerable(Of Double), IEnumerable(Of Double))Computes the Pearson of a sequence of System.Double values.
Parameters
| Name | Type | Description |
|---|---|---|
source | IEnumerable(Of Double) | A sequence of System.Double values to calculate the Pearson of. |
other | IEnumerable(Of Double) | - |
Returns
The Pearson of the sequence of values.
Pearson(
IEnumerable(Of Nullable(Of Single)), IEnumerable(Of Nullable(Of Single)))Computes the Pearson of a sequence of nullable System.Single values.
Parameters
| Name | Type | Description |
|---|---|---|
source | IEnumerable(Of Nullable(Of Single)) | A sequence of nullable System.Single values to calculate the Pearson of. |
other | IEnumerable(Of Nullable(Of Single)) | - |
Returns
The Pearson of the sequence of values, or null if the source sequence is empty or contains only values that are null.
Pearson(
IEnumerable(Of TSource), IEnumerable(Of TSource), Func(Of TSource, Nullable(Of Decimal)))