In: Statistics and Probability
Assume that Z (6). Generate 1000 random numbers from Z and plot the corresponding histogram.
Given Z is a standard normal random variable.
### By using R software:
>z=rnorm(1000,0,1) ### command to generate 1000 random samples.
>hist(z) ## command to draw histogram.
The R output.