(5 pts)
I set up a little tool to generate 100000 random height measurements. You can access it and store the values in a variable called heights
like so:
dd <- read.csv('https://www.marksmath.org/cgi-bin/random_heights.csv?id=YOUR_STUDENT_ID#')
heights = dd$heights
length(heights)
## Out:
# 100000
Here's your assignment with this data:
- Grab your data
- Compute the mean of your data
- Grab a sample of size 30
- Compute sample mean
- Check to see if your sample mean lies within 1 standard error of the population mean