Converts the data in the AnovaTable to a DataTable.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function ToDataTable As DataTable |
| C# |
|---|
public DataTable ToDataTable () |
| C++ |
|---|
public: DataTable^ ToDataTable () |
Return Value
A DataTable object.
Remarks
Use this method to convert the AnovaTable to an ADO.NET DataTable.
The resulting table has the following columns:
FieldDescriptionSourceOfVariationA 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.