Constructs a new TwoWayAnovaModel object.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	dataTable As DataTable, _
	factor1Column As String, _
	factor2Column As String, _
	observationColumn As String _
)
C#
public TwoWayAnovaModel (
	DataTable dataTable,
	string factor1Column,
	string factor2Column,
	string observationColumn
)
C++
public:
TwoWayAnovaModel (
	DataTable^ dataTable, 
	String^ factor1Column, 
	String^ factor2Column, 
	String^ observationColumn
)

Parameters

dataTable (System.Data.DataTable)
A DataTable containing the data for the calculation.
factor1Column (System.String)
A String that specifies the name of the column in dataTable that contains the levels of the first factor.
factor2Column (System.String)
A String that specifies the name of the column in dataTable that contains the levels of the second factor.
observationColumn (System.String)
A String that specifies the name of the column in dataTable that contains the observations.