EntityFunctions.VarP Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invokes the canonical VarP
function, which returns the statistical variance over a population. For information about the canonical VarP
function, see Canonical Functions.
Overloads
VarP(IEnumerable<Nullable<Decimal>>) |
Invokes the canonical |
VarP(IEnumerable<Nullable<Double>>) |
Invokes the canonical |
VarP(IEnumerable<Int64>) |
Invokes the canonical |
VarP(IEnumerable<Nullable<Int32>>) |
Invokes the canonical |
VarP(IEnumerable<Double>) |
Invokes the canonical |
VarP(IEnumerable<Decimal>) |
Invokes the canonical |
VarP(IEnumerable<Int32>) |
Invokes the canonical |
VarP(IEnumerable<Nullable<Int64>>) |
Invokes the canonical |
Remarks
This function is translated to a corresponding function in the database.
VarP(IEnumerable<Nullable<Decimal>>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<Nullable<System::Decimal>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<decimal?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<Nullable<decimal>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Decimal))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Decimal>>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Nullable<Double>>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<Nullable<double>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<double?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<Nullable<double>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Double))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Double>>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Int64>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<long> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<long> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<int64> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Long)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Int64>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Nullable<Int32>>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<Nullable<int>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<int?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<Nullable<int>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Int32>>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Double>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<double> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<double> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<double> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Double)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Double>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Decimal>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<System::Decimal> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<decimal> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<decimal> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Decimal)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Decimal>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Int32>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<int> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<int> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<int> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Integer)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Int32>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
VarP(IEnumerable<Nullable<Int64>>)
Invokes the canonical VarP
function. For information about the canonical VarP
function, see Canonical Functions.
public:
static Nullable<double> VarP(System::Collections::Generic::IEnumerable<Nullable<long>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")]
public static double? VarP (System.Collections.Generic.IEnumerable<long?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "VarP")>]
static member VarP : seq<Nullable<int64>> -> Nullable<double>
Public Shared Function VarP (collection As IEnumerable(Of Nullable(Of Long))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Int64>>
The set of values for which the variance will be calculated.
Returns
The statistical variance of the population in the specified collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.