LoslegenKostenlos loslegen

Chi-Square test of independence analysis

A Chi-Square test of independence determines if two nominal variables are likely to be related.

You are assessing the previous gamedata dataset with a version variable, your A/B groups, and returning to the game variable. You have determined the sample size needed and collected the data, therefore now the Chi-Square test of independence can be run to assess whether the two version conditions and two return conditions are related.

The gamedata dataset, and effectsize and pwr packages have been loaded for you.

Diese Übung ist Teil des Kurses

A/B Testing in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Create a frequency table and run the test
freqtbl <- ___(___)
chisq.test(___)
Code bearbeiten und ausführen