Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TANOVA1Result ANOVA1(TMtx *Data, double &p, double Alpha = 0.05); | Performs a one-way (single-factor) analysis of variance (ANOVA). |
| 2 | TANOVA1Result ANOVA1(TVec *Data, TVecInt *GroupIndex, double &p, double Alpha = 0.05); | Perform the one-way analysis of variance where Data vector (one variable) is indexed by a second grouping GroupIndex vector variable. |
Overload 1: TANOVA1Result ANOVA1(TMtx *Data, double &p, double Alpha = 0.05);
Performs a one-way (single-factor) analysis of variance (ANOVA).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TMtx * | Data matrix, each column is separate group. |
| 2 | p | double & | Returns the significance probability of null hypothesis that two means are equal. If p is less than desired significance alpha then the result suggests the null hypothesis (two means are equal) can be rejected. |
| 3 | Alpha = 0.05 | double | Desired significance level. |
Remarks:
Performs a one-way (single-factor) analysis of variance.
Declared in Dew::Stats::Units::Regress · Dew.Stats/Units.Regress.h · Cross-compiler
Overload 2: TANOVA1Result ANOVA1(TVec *Data, TVecInt *GroupIndex, double &p, double Alpha = 0.05);
Perform the one-way analysis of variance where Data vector (one variable) is indexed by a second grouping GroupIndex vector variable.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TVec * | Data vector of single variable. |
| 2 | GroupIndex | TVecInt * | Stores group indexes. |
| 3 | p | double & | Returns the significance probability of null hypothesis that two means are equal. If p is less than desired significance alpha then the result suggests the null hypothesis (two means are equal) can be rejected. |
| 4 | Alpha = 0.05 | double | Desired significance level. |
See Also: Regress::ANOVA2
Declared in Dew::Stats::Units::Regress · Dew.Stats/Units.Regress.h · Cross-compiler