barnard_exact(table, alternative='two-sided', pooled=True, n=32)
Barnard's test is an exact test used in the analysis of contingency tables. It examines the association of two categorical variables, and is a more powerful alternative than Fisher's exact test for 2x2 contingency tables.
Let's define X_0 a 2x2 matrix representing the observed sample, where each column stores the binomial experiment, as in the example below. Let's also define p_1, p_2 the theoretical binomial probabilities for x_{11} and x_{12}. When using Barnard exact test, we can assert three different null hypotheses :
In order to compute Barnard's exact test, we are using the Wald statistic with pooled or unpooled variance. Under the default assumption that both variances are equal (pooled = True
), the statistic is computed as:
T(X) = \frac{ \hat{p}_1 - \hat{p}_2 }{ \sqrt{ \hat{p}(1 - \hat{p}) (\frac{1}{c_1} + \frac{1}{c_2}) } }
with \hat{p}_1, \hat{p}_2 and \hat{p} the estimator of p_1, p_2 and p, the latter being the combined probability, given the assumption that p_1 = p_2.
If this assumption is invalid (pooled = False
), the statistic is:
T(X) = \frac{ \hat{p}_1 - \hat{p}_2 }{ \sqrt{ \frac{\hat{p}_1 (1 - \hat{p}_1)}{c_1} + \frac{\hat{p}_2 (1 - \hat{p}_2)}{c_2} } }
The p-value is then computed as:
\sum \binom{c_1}{x_{11}} \binom{c_2}{x_{12}} \pi^{x_{11} + x_{12}} (1 - \pi)^{t - x_{11} - x_{12}}
where the sum is over all 2x2 contingency tables X such that: * T(X) \leq T(X_0) when alternative = "less", * T(X) \geq T(X_0) when alternative = "greater", or * T(X) \geq |T(X_0)| when alternative = "two-sided". Above, c_1, c_2 are the sum of the columns 1 and 2, and t the total (sum of the 4 sample's element).
The returned p-value is the maximum p-value taken over the nuisance parameter \pi, where 0 \leq \pi \leq 1.
This function's complexity is O(n c_1 c_2), where n is the number of sample points.
A 2x2 contingency table. Elements should be non-negative integers.
Defines the null and alternative hypotheses. Default is 'two-sided'. Please see explanations in the Notes section below.
Whether to compute score statistic with pooled variance (as in Student's t-test, for example) or unpooled variance (as in Welch's t-test). Default is True
.
Number of sampling points used in the construction of the sampling method. Note that this argument will automatically be converted to the next higher power of 2 since scipy.stats.qmc.Sobol is used to select sample points. Default is 32. Must be positive. In most cases, 32 points is enough to reach good precision. More points comes at performance cost.
A result object with the following attributes.
statistic
statistic
pvalue
pvalue
Perform a Barnard exact test on a 2x2 contingency table.
boschloo_exact
chi2_contingency
fisher_exact
import scipy.stats as stats
res = stats.barnard_exact([[7, 12], [8, 3]], alternative="less")
res.statistic
res.pvalue
_, pvalue = stats.fisher_exact([[7, 12], [8, 3]], alternative="less")
pvalue
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.stats._hypotests:boschloo_exact
scipy.stats.contingency:chi2_contingency
scipy.stats._stats_py:chisquare
scipy.stats._stats_py:fisher_exact
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them