SeriesSeriesPopulationStatistics Method |
Computes estimates for the moments of the population from which the time series is drawn.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static TimeSeriesPopulationStatistics SeriesPopulationStatistics(
this IReadOnlyList<double> series
)
<ExtensionAttribute>
Public Shared Function SeriesPopulationStatistics (
series As IReadOnlyList(Of Double)
) As TimeSeriesPopulationStatistics
public:
[ExtensionAttribute]
static TimeSeriesPopulationStatistics^ SeriesPopulationStatistics(
IReadOnlyList<double>^ series
)
[<ExtensionAttribute>]
static member SeriesPopulationStatistics :
series : IReadOnlyList<float> -> TimeSeriesPopulationStatistics
Parameters
- series
- Type: System.Collections.GenericIReadOnlyListDouble
The data series.
Return Value
Type:
TimeSeriesPopulationStatisticsA collection of population statistics.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IReadOnlyListDouble. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks Just as is the case for the variance of a sample (Variance),
the sample auto-covariances of a time series
are not unbiased estimates of the auto-covariances of the population from which
the series is drawn. Additional computations must be performed to calculate
unbiased estimates and error estimates for the time series mean and auto-covariances.
Unlike the case of a sample of uncorrelated values, these computations are complicated
and the same computation is relevant for all moments. Therefore, the computation is performed
once by this method, which returns a object from which all population statistics can be
quickly queried.
See Also