AnovaTable.ToDataFrame 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#
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:

ColumnDescription
Sum of squaresThe sum of the squares of deviations from the mean. This field corresponds to the SumOfSquares property.
Degrees of freedomThe degrees of freedom for the component. This field corresponds to the DegreesOfFreedom property.
Mean squareThe mean square error for the component. This field corresponds to the MeanSquare property.
FFor 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.
pFor 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.

See Also