Anova
            
            
            Converts the data in the AnovaTable to a DataTable.
            
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
A DataTable object.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public DataTable ToDataTable()Return Value
DataTableA DataTable object.
Remarks
Use this method to convert the AnovaTable to an ADO.NET DataTable. The resulting table has the following columns:
| Field | Description | 
|---|---|
| SourceOfVariation | A text label that indicates the source of the variation. This field corresponds to the Caption property. | 
| SumOfSquares | The sum of the squares of deviations from the mean. This field corresponds to the SumOfSquares property. | 
| DegreesOfFreedom | The degrees of freedom for the component. This field corresponds to the DegreesOfFreedom property. | 
| MeanSquare | The mean square error for the component. This field corresponds to the MeanSquare property. | 
| FStatistic | For 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. | 
| PValue | For 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. |