EntityFunctions.StandardDeviationP 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 StDevP
function, which returns the statistical standard deviation for a population. For information about the canonical StDevP
function, see Canonical Functions.
Overloads
StandardDeviationP(IEnumerable<Nullable<Int32>>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Nullable<Int64>>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Nullable<Double>>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Nullable<Decimal>>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Int32>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Double>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Decimal>) |
Invokes the canonical |
StandardDeviationP(IEnumerable<Int64>) |
Invokes the canonical |
Remarks
This function is translated to a corresponding function in the database.
StandardDeviationP(IEnumerable<Nullable<Int32>>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<int>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<int?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<int>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Int32>>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Nullable<Int64>>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<long>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<long?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<int64>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Long))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Int64>>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Nullable<Double>>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<double>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<double?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<double>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Double))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Double>>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Nullable<Decimal>>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<Nullable<System::Decimal>> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<decimal?> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<Nullable<decimal>> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Nullable(Of Decimal))) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Nullable<Decimal>>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Int32>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<int> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<int> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<int> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Integer)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Int32>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Double>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<double> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<double> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<double> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Double)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Double>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Decimal>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<System::Decimal> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<decimal> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<decimal> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Decimal)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Decimal>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.
Applies to
StandardDeviationP(IEnumerable<Int64>)
Invokes the canonical StDevP
function. For information about the canonical StDevP
function, see Canonical Functions.
public:
static Nullable<double> StandardDeviationP(System::Collections::Generic::IEnumerable<long> ^ collection);
[System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")]
public static double? StandardDeviationP (System.Collections.Generic.IEnumerable<long> collection);
[<System.Data.Objects.DataClasses.EdmFunction("Edm", "StDevP")>]
static member StandardDeviationP : seq<int64> -> Nullable<double>
Public Shared Function StandardDeviationP (collection As IEnumerable(Of Long)) As Nullable(Of Double)
Parameters
- collection
- IEnumerable<Int64>
A set of numeric values.
Returns
The statistical standard deviation of the population in the input collection.
- Attributes
Remarks
This function is translated to a corresponding function in the database.