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.
Team feedback #1 is due on Wed, Oct 7 at 11:59p. You should have received an email from Teammates with the link to fill out the feedback. If you did not receive the email (and it’s not in your spam folder), please email Professor Tackett. Team feedback counts as part of the participation grade.
Lab 06 due on Wed, Oct 7 at 11:59p.
Project proposal due on Fri, Oct 9 at 11:59p
If you have playing cards, please bring them to Wednesday’s live lecture session for an in-class activity.
Clone the ae-15 repo and start a new project in RStudio.
Configure git by running the code below in the console. Be sure to fill in your GitHub username and email associated with your Github account.
library(usethis)
use_git_config(user.name= "your github username", user.email="your email")
library(tidyverse)
library(infer)
parkinsons <- read_csv("data/parkinsons.csv")
Construct and interpret a 95% confidence interval for the difference in mean shimmer (in dB) between the PD and non-PD individuals using a simulation-based approach.
Repeat Exercise 1 using a CLT-based approach.
Is there evidence that there is a difference in shimmer between these two groups? Perform a formal statistical hypothesis test using a simulation-based method to answer this question. Include the hypotheses, null distribution, p-value and conclusion stated in the context of the research problem.
Repeat Exercise 3 using the Central Limit Theorem.