Share via


Window<TKey,TSource>.StandardDeviation Method

Definition

Overloads

StandardDeviation(Expression<Func<TSource,Nullable<Int64>>>)

Computes the sample standard deviation of the elements in the window.

StandardDeviation(Expression<Func<TSource,Nullable<Double>>>)

Computes the sample standard deviation of the elements in the window.

StandardDeviation(Expression<Func<TSource,Nullable<Int64>>>)

Computes the sample standard deviation of the elements in the window.

public Microsoft.StreamProcessing.Aggregates.IAggregate<TSource,System.Collections.Generic.List<double>,Nullable<double>> StandardDeviation (System.Linq.Expressions.Expression<Func<TSource,Nullable<long>>> selector);
member this.StandardDeviation : System.Linq.Expressions.Expression<Func<'Source, Nullable<int64>>> -> Microsoft.StreamProcessing.Aggregates.IAggregate<'Source, System.Collections.Generic.List<double>, Nullable<double>>
Public Function StandardDeviation (selector As Expression(Of Func(Of TSource, Nullable(Of Long)))) As IAggregate(Of TSource, List(Of Double), Nullable(Of Double))

Parameters

selector
Expression<Func<TSource,Nullable<Int64>>>

Returns

Applies to

StandardDeviation(Expression<Func<TSource,Nullable<Double>>>)

Computes the sample standard deviation of the elements in the window.

public Microsoft.StreamProcessing.Aggregates.IAggregate<TSource,System.Collections.Generic.List<double>,Nullable<double>> StandardDeviation (System.Linq.Expressions.Expression<Func<TSource,Nullable<double>>> selector);
member this.StandardDeviation : System.Linq.Expressions.Expression<Func<'Source, Nullable<double>>> -> Microsoft.StreamProcessing.Aggregates.IAggregate<'Source, System.Collections.Generic.List<double>, Nullable<double>>
Public Function StandardDeviation (selector As Expression(Of Func(Of TSource, Nullable(Of Double)))) As IAggregate(Of TSource, List(Of Double), Nullable(Of Double))

Parameters

selector
Expression<Func<TSource,Nullable<Double>>>

Returns

Applies to