nuget server logo nuget api documents
↑

API Docs / Microsoft.VisualBasic.Runtime / EnumerableStatsPearson

EnumerableStatsPearson

Full name Microsoft.VisualBasic.Math.Statistics.Linq.EnumerableStatsPearson Assembly Microsoft.VisualBasic.Runtime Members 3

01 Syntax

Microsoft.VisualBasic.Math.Statistics.Linq.EnumerableStatsPearson

02 Methods

NameOverloadsSummary
Pearson 3 Computes the Pearson of a sequence of System.Double values.

03 Members

method Pearson #
Pearson(IEnumerable(Of Double), IEnumerable(Of Double))

Computes the Pearson of a sequence of System.Double values.

Parameters
NameTypeDescription
sourceIEnumerable(Of Double)

A sequence of System.Double values to calculate the Pearson of.

otherIEnumerable(Of Double)

-

Returns

The Pearson of the sequence of values.

method Pearson overload 2 #
Pearson(IEnumerable(Of Nullable(Of Single)), IEnumerable(Of Nullable(Of Single)))

Computes the Pearson of a sequence of nullable System.Single values.

Parameters
NameTypeDescription
sourceIEnumerable(Of Nullable(Of Single))

A sequence of nullable System.Single values to calculate the Pearson of.

otherIEnumerable(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.

method Pearson overload 3 #
Pearson(IEnumerable(Of TSource), IEnumerable(Of TSource), Func(Of TSource, Nullable(Of Decimal)))