AnovaTable.ToDataTable Method

Converts the data in the AnovaTable to a DataTable.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public DataTable ToDataTable()

Return Value

DataTable
A DataTable object.

Remarks

Use this method to convert the AnovaTable to an ADO.NET DataTable. The resulting table has the following columns:

FieldDescription
SourceOfVariationA text label that indicates the source of the variation. This field corresponds to the Caption property.
SumOfSquaresThe sum of the squares of deviations from the mean. This field corresponds to the SumOfSquares property.
DegreesOfFreedomThe degrees of freedom for the component. This field corresponds to the DegreesOfFreedom property.
MeanSquareThe mean square error for the component. This field corresponds to the MeanSquare property.
FStatisticFor model rows, the F statistic for the component. For the error and total rows, the value is Value. This field corresponds to the FStatistic property.
PValueFor model rows, the p-value corresponding to the F statistic for the model component. For the error and total rows,the value is Value. This field corresponds to the PValue property.

See Also