Chapter 17
Testing a Two-sided Hypothesis Using a Confidence Interval (Lecture Notes for Lecture 16)
- State the procedure for testing a null hypothesis \(\mu_{X} = \mu_{0}\) at significance level \(\alpha\) using a confidence interval.
- State the rationale for why we can test a null hypothesis \(\mu_{X} = \mu_{0}\) at significance level \(\alpha\) using a confidence interval with confidence level \(c = 1 - \alpha\).
- Perform a hypothesis test for the null hypothesis \(\mu_{X} = \mu_{0}\) given all of the relevant information.
One-sample \(t\)-tests in R (Lecture Notes for Lecture 16)
- Perform a one-sample \(t\)-test from a variable in a data frame using
t.test
from mosaic
.
- Perform a one-sample \(t\)-test from summary statistics using
one.sample.t.test
from MUsaic
.
- Construct a confidence level \(c\) confidence interval from a variable in a data frame using
t.test
from mosaic
.
- Construct a confidence level \(c\) confidence interval from summary statistics using
one.sample.t.test
from MUsaic
.