Method StandardDeviationPopulation
StandardDeviationPopulation(IQueryable<int>)
Computes the population standard deviation of a sequence of values.
public static double StandardDeviationPopulation(this IQueryable<int> source)
Parameters
source
IQueryable<int>A sequence of values to calculate the population standard deviation of.
Returns
- double
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<int?>)
Computes the population standard deviation of a sequence of values.
public static double? StandardDeviationPopulation(this IQueryable<int?> source)
Parameters
source
IQueryable<int?>A sequence of values to calculate the population standard deviation of.
Returns
- double?
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<long>)
Computes the population standard deviation of a sequence of values.
public static double StandardDeviationPopulation(this IQueryable<long> source)
Parameters
source
IQueryable<long>A sequence of values to calculate the population standard deviation of.
Returns
- double
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<long?>)
Computes the population standard deviation of a sequence of values.
public static double? StandardDeviationPopulation(this IQueryable<long?> source)
Parameters
source
IQueryable<long?>A sequence of values to calculate the population standard deviation of.
Returns
- double?
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<float>)
Computes the population standard deviation of a sequence of values.
public static float StandardDeviationPopulation(this IQueryable<float> source)
Parameters
source
IQueryable<float>A sequence of values to calculate the population standard deviation of.
Returns
- float
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<float?>)
Computes the population standard deviation of a sequence of values.
public static float? StandardDeviationPopulation(this IQueryable<float?> source)
Parameters
source
IQueryable<float?>A sequence of values to calculate the population standard deviation of.
Returns
- float?
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<double>)
Computes the population standard deviation of a sequence of values.
public static double StandardDeviationPopulation(this IQueryable<double> source)
Parameters
source
IQueryable<double>A sequence of values to calculate the population standard deviation of.
Returns
- double
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<double?>)
Computes the population standard deviation of a sequence of values.
public static double? StandardDeviationPopulation(this IQueryable<double?> source)
Parameters
source
IQueryable<double?>A sequence of values to calculate the population standard deviation of.
Returns
- double?
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<decimal>)
Computes the population standard deviation of a sequence of values.
public static decimal StandardDeviationPopulation(this IQueryable<decimal> source)
Parameters
source
IQueryable<decimal>A sequence of values to calculate the population standard deviation of.
Returns
- decimal
The population standard deviation of the sequence of values.
StandardDeviationPopulation(IQueryable<decimal?>)
Computes the population standard deviation of a sequence of values.
public static decimal? StandardDeviationPopulation(this IQueryable<decimal?> source)
Parameters
source
IQueryable<decimal?>A sequence of values to calculate the population standard deviation of.
Returns
- decimal?
The population standard deviation of the sequence of values.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, int>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static double StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, int>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, int>>A transform function to apply to each element.
Returns
- double
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, int?>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static double? StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, int?>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, int?>>A transform function to apply to each element.
Returns
- double?
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, long>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static double StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, long>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, long>>A transform function to apply to each element.
Returns
- double
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, long?>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static double? StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, long?>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, long?>>A transform function to apply to each element.
Returns
- double?
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, float>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static float StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, float>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, float>>A transform function to apply to each element.
Returns
- float
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, float?>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static float? StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, float?>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, float?>>A transform function to apply to each element.
Returns
- float?
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, double>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static double StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, double>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, double>>A transform function to apply to each element.
Returns
- double
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, double?>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static double? StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, double?>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, double?>>A transform function to apply to each element.
Returns
- double?
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, decimal>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static decimal StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, decimal>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, decimal>>A transform function to apply to each element.
Returns
- decimal
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
StandardDeviationPopulation<TSource>(IQueryable<TSource>, Expression<Func<TSource, decimal?>>)
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
public static decimal? StandardDeviationPopulation<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, decimal?>> selector)
Parameters
source
IQueryable<TSource>A sequence of values to calculate the population standard deviation of.
selector
Expression<Func<TSource, decimal?>>A transform function to apply to each element.
Returns
- decimal?
The population standard deviation of the sequence of values.
Type Parameters
TSource
The type of the elements of
source
.