Testul chi-pătrat de independență

Testarea ipotezelor în Python

James Chapman

Curriculum Manager, DataCamp

Revenire la testul de proporții

age_by_hobbyist = stack_overflow.groupby("age_cat")['hobbyist'].value_counts()
age_cat      hobbyist
At least 30  Yes          812
             No           238
Under 30     Yes         1021
             No           190
Name: hobbyist, dtype: int64
from statsmodels.stats.proportion import proportions_ztest
n_hobbyists = np.array([812, 1021])
n_rows = np.array([812 + 238, 1021 + 190])
stat, p_value = proportions_ztest(count=n_hobbyists, nobs=n_rows, 
                                  alternative="two-sided")
(-4.223691463320559, 2.403330142685068e-05)
Testarea ipotezelor în Python

Independența variabilelor

Rezultatul testului anterior: dovezi că hobbyist și age_cat sunt asociate

Independență statistică - proporția de succese în variabila răspuns este aceeași pentru toate categoriile variabilei explicative

Testarea ipotezelor în Python

Test de independență a variabilelor

import pingouin
expected, observed, stats = pingouin.chi2_independence(data=stack_overflow, x='hobbyist',
                                                       y='age_cat', correction=False)
print(stats)
                 test    lambda       chi2  dof      pval    cramer     power
0             pearson  1.000000  17.839570  1.0  0.000024  0.088826  0.988205
1        cressie-read  0.666667  17.818114  1.0  0.000024  0.088773  0.988126
2      log-likelihood  0.000000  17.802653  1.0  0.000025  0.088734  0.988069
3       freeman-tukey -0.500000  17.815060  1.0  0.000024  0.088765  0.988115
4  mod-log-likelihood -1.000000  17.848099  1.0  0.000024  0.088848  0.988236
5              neyman -2.000000  17.976656  1.0  0.000022  0.089167  0.988694

$\chi^2$ statistic = 17.839570 = $(-4.223691463320559)^2$ = ($z$-score)$^2$

Testarea ipotezelor în Python

Satisfacția profesională și categoria de vârstă

stack_overflow['age_cat'].value_counts()
Under 30       1211
At least 30    1050
Name: age_cat, dtype: int64
stack_overflow['job_sat'].value_counts()
Very satisfied           879
Slightly satisfied       680
Slightly dissatisfied    342
Neither                  201
Very dissatisfied        159
Name: job_sat, dtype: int64
Testarea ipotezelor în Python

Declararea ipotezelor

$H_{0}$: Categoriile de vârstă sunt independente de nivelurile de satisfacție profesională

$H_{A}$: Categoriile de vârstă nu sunt independente de nivelurile de satisfacție profesională

alpha = 0.1
  • Statistica de test este notată $\chi^{2}$
  • Presupunând independența, cât de departe sunt rezultatele observate față de valorile așteptate?
Testarea ipotezelor în Python

Vizualizare exploratorie: diagramă cu bare stivuite proporționale

props = stack_overflow.groupby('job_sat')['age_cat'].value_counts(normalize=True)

wide_props = props.unstack()
wide_props.plot(kind="bar", stacked=True)
Testarea ipotezelor în Python

Vizualizare exploratorie: diagramă cu bare stivuite proporționale

Diagramă cu bare stivuite proporționale a satisfacției profesionale, colorată după categoria de vârstă

Testarea ipotezelor în Python

Testul chi-pătrat de independență

import pingouin
expected, observed, stats = pingouin.chi2_independence(data=stack_overflow, x="job_sat", y="age_cat")
print(stats)    
                 test    lambda      chi2  dof      pval    cramer     power
0             pearson  1.000000  5.552373  4.0  0.235164  0.049555  0.437417
1        cressie-read  0.666667  5.554106  4.0  0.235014  0.049563  0.437545
2      log-likelihood  0.000000  5.558529  4.0  0.234632  0.049583  0.437871
3       freeman-tukey -0.500000  5.562688  4.0  0.234274  0.049601  0.438178
4  mod-log-likelihood -1.000000  5.567570  4.0  0.233854  0.049623  0.438538
5              neyman -2.000000  5.579519  4.0  0.232828  0.049676  0.439419

Grade de libertate:

$(\text{Nr. de categorii ale variabilei răspuns} - 1) \times (\text{Nr. de categorii ale variabilei explicative} - 1)$

$(2 - 1) * (5 - 1) = 4$

Testarea ipotezelor în Python

Inversarea variabilelor?

props = stack_overflow.groupby('age_cat')['job_sat'].value_counts(normalize=True)
wide_props = props.unstack()
wide_props.plot(kind="bar", stacked=True)
Testarea ipotezelor în Python

Inversarea variabilelor?

Diagramă cu bare stivuite proporționale a categoriei de vârstă, colorată după satisfacția profesională

Testarea ipotezelor în Python

Chi-pătrat în ambele sensuri

expected, observed, stats = pingouin.chi2_independence(data=stack_overflow, x="age_cat", y="job_sat")
print(stats[stats['test'] == 'pearson'])   
      test  lambda      chi2  dof      pval    cramer     power
0  pearson     1.0  5.552373  4.0  0.235164  0.049555  0.437417

Întrebarea: Sunt variabilele X și Y independente?

Nu: Este variabila X independentă de variabila Y?

Testarea ipotezelor în Python

Direcție și cozi?

  • Valorile observate și așteptate la pătrat trebuie să fie non-negative
  • Testele chi-pătrat sunt aproape întotdeauna cu coadă dreaptă $^{1}$
1 Testele chi-pătrat cu coadă stângă sunt utilizate în criminalistica statistică pentru a detecta dacă un ajustaj este suspect de bun, deoarece datele au fost fabricate. Testele chi-pătrat ale varianței pot fi cu două cozi. Acestea sunt utilizări de nișă.
Testarea ipotezelor în Python

Să exersăm!

Testarea ipotezelor în Python

Preparing Video For Download...