STK ObjectsSend comments on this topic.
IAgDrStatisticResult Interface

Description

Represents the results of computing a data set statistics using IAgDrStatistics.ComputeStatistic method.

Public Properties

Public Property ValueValue of the statistic computed. Uses the dimension of the data set used to compute the time varying extremum.

CoClasses that Implement IAgDrStatisticResult

Example

Compute statistic on data set
[C#]
IAgDrStatisticResult result = dataSet.Statistics.ComputeStatistic(AgEStatistics.eStdDev);
Console.WriteLine("{0}", dataSet.ElementName);
Console.WriteLine("\tStandard Deviation: {0}", result.Value);
Compute statistic on data set
[Visual Basic .NET]
Dim result As IAgDrStatisticResult = dataSet.Statistics.ComputeStatistic(AgEStatistics.eStdDev)
Console.WriteLine("{0}", dataSet.ElementName)
Console.WriteLine(vbTab & "Standard Deviation: {0}", result.Value)
© 2024 Analytical Graphics, Inc. All Rights Reserved.