Statistics.ChiSquareTest Method

procedure ChiSquareTest(const Data: TVec; Sigma: Double; out hRes: THypothesisResult; out Signif: Double; var ConfInt: TDoubleArray; hType: THypothesisType; Alpha: Double);

Chi-Squared Test.

#NameDescription
1DataData to be tested.
2SigmaStandard deviation which is compared to data standard deviation.
3hResReturns the result of the null hypothesis (default assumption is that the means are equal).
4hTypeDefines the type of the null hypothesis (left, right and two - tailed).
5Signif(Significance level) returns the probability of observing the given result by chance given that the null hypothesis is true.
6ConfIntReturns the 100*(1-Alpha) percent confidence interval for the mean.
7AlphaDefines the desired significance level. If the significance probability (Signif) is bellow the desired significance (Alpha), the null hypothesis is rejected.

Result: stored in self (calling object)

Remarks:

Performs Chi-Squared test by comparing sample standard deviation with Sigma.