Homework 1

This is my homework

Section 1

I don’t like homework

Question 1

I hate it. Let us generate a few random number

rnorm(10)
##  [1]  0.75145864 -1.08560594  0.01597199 -0.54633552  0.79959788
##  [6]  1.12505124  1.61041366  0.36212700 -0.26852725  1.94844487

rnorm is used to generate random number from normal distribution.

a <- rnorm(10)
plot(a)

pie(abs(a))