statsmodels.stats.multivariate_tools.CCRankTestResult#
- class statsmodels.stats.multivariate_tools.CCRankTestResult(statistic, pvalue, df, ccorr, wald_statistic, wald_pvalue)[source]#
Result of
cc_ranktest.Only returned if
return_object=Trueis used, otherwisecc_ranktestreturns the equivalent plain tuple(statistic, pvalue, df, ccorr, wald_statistic, wald_pvalue).- Parameters:
- statistic
floatorndarray Value of the LM (Anderson canonical correlations) test statistic.
- pvalue
floatorndarray P-value for the LM test statistic, based on the chi-square distribution.
- df
intorndarray Degrees of freedom for the chi-square distribution in the hypothesis test.
- ccorr
ndarray, 1-D All canonical correlation coefficients sorted from largest to smallest.
- wald_statistic
floatorndarray Value of the Wald (Cragg-Donald) test statistic.
- wald_pvalue
floatorndarray P-value for the Wald test statistic, based on the chi-square distribution.
- statistic
- Attributes:
- ccorr
- df
- pvalue
- statistic
- wald_pvalue
- wald_statistic
Methods
Properties