statsmodels.stats.contingency_tables.SquareTable¶
-
class statsmodels.stats.contingency_tables.SquareTable(table, shift_zeros=
True)[source]¶ Methods for analyzing a square contingency table.
- Parameters:¶
Notes
These methods should only be used when the rows and columns of the table have the same categories. If table is provided as a Pandas DataFrame, the row and column indices will be extended to create a square table, inserting zeros where a row or column is missing. Otherwise the table should be provided in a square form, with the (implicit) row and column categories appearing in the same order.
Methods
from_data(data[, shift_zeros])Construct a Table object from data.
homogeneity([method])Compare row and column marginal distributions.
summary([alpha, float_format])Produce a summary of the analysis.
symmetry([method])Test for symmetry of a joint distribution.
Assess independence for nominal factors.
test_ordinal_association([row_scores, ...])Assess independence between two ordinal variables.
Properties
Returns the contributions to the chi^2 statistic for independence.
Returns cumulative log odds ratios.
Returns the cumulative odds ratios for a contingency table.
Returns fitted cell counts under independence.
Returns fitted joint probabilities under independence.
Returns local log odds ratios.
Returns local odds ratios.
Estimate marginal probability distributions for the rows and columns.
Returns Pearson residuals.
Returns standardized residuals under independence.