Statistics.HotellingT2Two Method

function HotellingT2Two(const X1: TMtx; const X2: TMtx; out Signif: Double; out hRes: THypothesisResult; out v: Double; const Means: TVec; const EqualCovariances: Boolean; const Alpha: Double): Double;

Two-sample Hotelling T2 test.

#NameDescription
1X1First test data.
2X2Second test data.
3MeansStores estimated mean for each variable. An exception is raised if Means Length is not equal to X1 or X2 columns.
4hResReturns the result of the null hypothesis (default assumption is both tests variable means are equal to Means vector).
5vReturns n1+n2-2 for equal covariances, v for unequal covariance matrices.
6AlphaDefines the desired significance level. If the significance probability (Signif) is bellow the desired significance (Alpha), the null hypothesis is rejected.
7EqualCovariancesAssume both test have equal variances. If this is not the case, set EqualCovariances to false.
8Signif(Significance level) returns the probability of observing the given result by chance given that the null hypothesis is true.

Returns: Double - Hotelling T2 Statistics for two-sample test.

Remarks:

Performs two-sample Hotelling T2 test on samples X1 and X2. For this test the assumptions of equal variances and normally distributed residuals are used. Use the Statistics.MBoxTest routine to check if both tests have equal variances.

See Also: Statistics.MBoxTest