What This Document Is
This document is a lab practice assignment for Emory University’s Introduction to Statistical Inference (QTM 100) course. It focuses on applying statistical concepts – descriptive statistics, data visualization, and sampling distributions – using the R programming language and a dataset related to youth risk behavior. The lab explores how to manipulate data, assess normality, and understand the behavior of sample means.
Why This Document Matters
This lab practice is designed for students enrolled in QTM 100 who are learning to implement statistical inference techniques. It’s used to reinforce theoretical concepts through hands-on coding and data analysis. Successfully completing this assignment demonstrates a student’s ability to translate statistical principles into practical application using R. It’s likely part of a series of labs building towards more complex inferential procedures.
Common Limitations or Challenges
This lab practice provides code snippets and analysis prompts, but it does *not* offer a comprehensive explanation of the underlying statistical theory. Students are expected to have a foundational understanding of concepts like standard error, histograms, and normal distributions *before* attempting this lab. It also assumes familiarity with the R programming environment and basic data manipulation techniques. The document focuses on *doing* statistics, not *learning* statistics from scratch.
What This Document Provides
The full document includes:
* R code for importing and manipulating a dataset (`yrbss2013.csv`).
* Code for calculating descriptive statistics (mean, standard deviation) using the `summarySE` function.
* Instructions for creating visualizations like histograms and Q-Q plots to assess data distribution.
* Exercises involving creating subsets of the data based on specific criteria.
* For loops to generate multiple samples and calculate sample means.
* Analysis of the distribution of `days_drink` variable.
This preview *does not* include the complete R code, the results of the analyses, or detailed explanations of the statistical concepts. It also does not include the full dataset.