StatisticFormula.Anova(Double, String) Method

Definition

The Anova formula determines the existence or absence of a statistically significant difference between the mean values of two or more groups of data.

public:
 System::Web::UI::DataVisualization::Charting::AnovaResult ^ Anova(double probability, System::String ^ inputSeriesNames);
public System.Web.UI.DataVisualization.Charting.AnovaResult Anova (double probability, string inputSeriesNames);
member this.Anova : double * string -> System.Web.UI.DataVisualization.Charting.AnovaResult
Public Function Anova (probability As Double, inputSeriesNames As String) As AnovaResult

Parameters

probability
Double

Alpha value. The acceptable input range is between 0 and 1.

inputSeriesNames
String

Names of two or more input series. Each series must exist in the series collection at the time of the method call, and have the same number of data points.

Returns

An AnovaResult object.

Examples

The following code demonstrates how to use this formula.

Dim result As AnovaResult = Chart1.DataManipulator.Statistics.Anova(.05, "Series1,Series2,Series3")  
AnovaResult result = Chart1.DataManipulator.Statistics.Anova(.05, "Series1,Series2,Series3");  

Applies to