Hang out with the TAs from STA 199! This is a casual conversation and a fun opportunity to meet the members of the STA 199 teaching team. The only rule is these can’t turn into office hours!
Tea with a TA counts as a statistics experience.
What is similar, and what is different, between CLT based test of means vs. simulation based test?
library(tidyverse)
library(infer)
We will be using the pokemon
dataset, which contains information about 45 randomly selected Pokemon (from all generations). You may load in the dataset with the following code:
pokemon <- read_csv("data/pokemon.csv")
Use the infer package to answer the following exercises.
Construct and interpret a 95% confidence interval for the mean height in meters (height_m
) of Pokemon species by using the Central Limit Theorem.
The average height of a human is 1.65 meters. Evaluate whether a randomly selected Pokemon species has a different mean height by using the Central Limit Theorem.
In doing so, state your null and alternative hypotheses, the distribution of your test statistic under the null hypothesis, your p-value, decision, and conclusion in context of the research problem.
Now evaluate whether a randomly-selected Pokemon species has a lower mean height by using the Central Limit Theorem. In doing so, state your null and alternative hypotheses, the distribution of your test statistic under the null hypothesis, your p-value, decision, and conclusion in context of the research problem.
Suppose the true mean height among Pokemon species is 1.4 meters. In your conclusions from Exercises 2 and 3, did you make the correct decision, a Type 1 error, or a Type 2 error? Explain.