Click or drag to resize

OneWayAnovaSetData(DataFrame, Int32, Int32) Method

Performs a one way ANOVA from data in the given data frame.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void SetData(
	DataFrame data,
	int groupColumn,
	int dataColumn
)

Parameters

data  DataFrame
A DataFrame containing the data.
groupColumn  Int32
The index of the DataFrame column containing the group values.
dataColumn  Int32
The index of the DataFrame column containing the numeric data. The specified column must be of type DFNumericColumn.
Remarks
The DataFrame method GetGroupings() is applied to the specified group column, producing a sorted list of unique group values.
See Also