function FTest(const Data1: TVec; const Data2: TVec; out hRes: THypothesisResult; out Signif: Double; var ConfInt: TDoubleArray; hType: THypothesisType; Alpha: Double): Double;
F Test.
| # | Name | Description |
|---|---|---|
| 1 | Data1 | First data set from which to compute standard deviation. |
| 2 | Data2 | Second data set from which to compute standard deviation. |
| 3 | hRes | Returns the result of the null hypothesis (default assumption is that the means are equal). |
| 4 | hType | Defines the type of the null hypothesis (left, right and two - tailed). |
| 5 | Signif | (Significance level) returns the probability of observing the given result by chance given that the null hypothesis is true. |
| 6 | ConfInt | Returns the 100*(1-Alpha) percent confidence interval for the mean. |
| 7 | Alpha | Defines the desired significance level. If the significance probability (Signif) is bellow the desired significance (Alpha), the null hypothesis is rejected. |
Returns: Double - The F-test statistics.
Remarks:
Performs F-Test by comparing Data1 and Data2 standard deviations.