Click or drag to resize
StatsexpandingStdDevK Method
Returns a series that contains standard deviation over expanding windows (the value for a given key is calculated from all elements with smaller keys); If the entire window contains fewer than 2 values, the result is missing. [category:Expanding windows]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, double> expandingStdDev<K>(
	Series<K, double> series
)

Parameters

series
Type: DeedleSeriesK, Double

[Missing <param name="series"/> documentation for "M:Deedle.Stats.expandingStdDev``1(Deedle.Series{``0,System.Double})"]

Type Parameters

K

Return Value

Type: SeriesK, Double

[Missing <returns> documentation for "M:Deedle.Stats.expandingStdDev``1(Deedle.Series{``0,System.Double})"]

See Also