(5pts)
For this problem, we’re going to import the same random CDC-like data set that we imported before but, this time, we’ll investigate the heights of the people in the sample. Specifically,
- Import your data using your Discourse login name as before,
- Compute the mean and standard deviation of your data
- Plot the histogram of your data
We’ll work on this together on Friday, September 8 and we’ll have an in class lab to help us learn these basics.
Also, please do make sure to indent your computer code 4 spaces so that it is typeset as computer code. For example, when I want my input to look like this:
mydf = read.csv('https://marksmath.org/cgi-bin/random_data.csv?username=mark')
heights = mydf$height
I have to actually type this:
mydf = read.csv('https://marksmath.org/cgi-bin/random_data.csv?username=mark')
heights = mydf$height