(5 pts)
By now, we’ve played with random data quite a few times. We’re going to do so again but, this time, we’re not going to import quite so much data - only 12 rows. I can do this like so:
df = read.csv('https://www.marksmath.org/cgi-bin/random_data.csv?username=mark&length=12')
dim(d)
# Out: 12 10
That output indicates that I’ve got only twelve rows of data.
Your assignment: Perform a t.test
on the column of heights and report your confidence interval. As always, your code should be typeset as code and your answer should be typeset as prose.