Independent Samples T-Test
When the experiment is between-samples, that means the levels are independent and we use an independent samples t-test.
1t.test(Pages ~ Site, data=pgviews, var.equal=TRUE)
2
3#
This is a parametric test.
Report the test
How do we report this test?
1pgviews: t(498) = -7.21, p<.0001
where 498 is the degrees of freedom, t is the t-statistics, and p is the p-value.
References
#statistics #experiment #rlang #coursera #t_test #design #theory #test #week3 #ab_test #designing_running_and_analyzing_experiments