Practicing Statistics Interview Questions in R
Zuzanna Chmielewska
Actuary
The t-test's assumptions:
$$H_{0}: \mu = \mu_{0}$$
$$H_{1}: \mu \neq \mu_{0}$$
where:
$\mu$ - the population's mean
$\mu_{0}$ - the hypothesized mean
t.test(x)
t.test(x)
t.test(x)
t.test(x, mu = 2)
t.test(x, mu = 2, conf.level = 0.9)
t.test()
in RPracticing Statistics Interview Questions in R