Anova Table.To Data Frame Method
Converts the data in the AnovaTable to a DataFrame<R, C>.
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A DataFrame<R, C> object.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public DataFrame<string, string> ToDataFrame()
Return Value
DataFrame<String, String>A DataFrame<R, C> object.
Remarks
Use this method to convert the AnovaTable to a DataFrame<R, C>. The row keys are the captions of each row. The data frame has the following columns:
Column | Description |
---|---|
Sum of squares | The sum of the squares of deviations from the mean. This field corresponds to the SumOfSquares property. |
Degrees of freedom | The degrees of freedom for the component. This field corresponds to the DegreesOfFreedom property. |
Mean square | The mean square error for the component. This field corresponds to the MeanSquare property. |
F | For model rows, the F statistic for the component. For the error and total rows, the value is NaN. This field corresponds to the FStatistic property. |
p | For model rows, the p-value corresponding to the F statistic for the model component. For the error and total rows,the value is NaN. This field corresponds to the PValue property. |