Question

Generate data of 600 random variable from normal distribution with mean 8 and standard deviation 3...

Generate data of 600 random variable from normal distribution with mean 8 and standard deviation 3 give it a name “MyData”

  1. Calculate the following from MyData,

Mean, Variance, Standard deviation, minimum, Q1, Median, Q3, Maximum.

  1. Construct a histogram from MyData with title: Histogram of MyData generated from Normal dist with mean= 8 and sd=3.
  1. Construct a box plot from the generated data.

Homework Answers

Answer #1

hii. you have not tell what software i must used but i am using R software for answering. the b and c part graph are

if you have any doubt please ask freely by comment i will respond to you.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
(1) Generate 80 normally distributed random variables with the mean 30 and the standard deviation 8,...
(1) Generate 80 normally distributed random variables with the mean 30 and the standard deviation 8, and store them in the vector ‘rand.vec. Then plot their empirical distribution function. (2) Given a normal distribution with the mean 30 and the standard deviation 8, find the two values of x that contain the middle 70% of the normal curve area. (3) Calculate the probability for 2.5 < X < 10 in a Poisson distribution with the mean 6 use in R...
76 Statistic 64 Sample Size 62 Sample Mean 81 Sample Standard Deviation (SD) 70 72 Minimum...
76 Statistic 64 Sample Size 62 Sample Mean 81 Sample Standard Deviation (SD) 70 72 Minimum 81 First Quartile (Q1) 63 Median (Q2) 67 Third Quartile (Q3) 77 Maximum
Data are from a normal distribution with a mean of 5 and a standard deviation of...
Data are from a normal distribution with a mean of 5 and a standard deviation of 2.5. What % of observations are positive? What % of observations are negative?
Generate a data set from a normal distribution. Then you can apply bootstrap method to the...
Generate a data set from a normal distribution. Then you can apply bootstrap method to the generated data to obtain the empirical distribution of the coefficient of variation: sample standard deviation over sample mean, that is cv = s/¯ x. Describe this distribution. Also please describe the algorithm and attach the R code
Given a random variable X following normal distribution with mean of -3 and standard deviation of...
Given a random variable X following normal distribution with mean of -3 and standard deviation of 4. Then random variable Y=0.4X+5 is also normal. (1)Find the distribution of Y, i.e. μy,σy (2)Find the probabilities P(−4<X<0),P(−1<Y<0) (3)Find the probabilities(let n size =8) P(−4<X¯<0),P(3<Y¯<4) (4)Find the 53th percentile of the distribution of X
For the following Simple data ( separately ) : 18 , 30 , 14 , 21...
For the following Simple data ( separately ) : 18 , 30 , 14 , 21 , 25 , 24 , 34 , 15 , 25 , 26 , 18 , 24 , 18 , 33 , 20 1) Find ( Mean , Mode , Median , Range , Midrange , Standard Deviation , Variance ) 2) Sketch the distribution Shapes approximately. 3) Determine the type of shape 4) Find coefficient of variation 5) Find the value of the 20th...
PLEASE USE R CODE!! Continue to generate standard normal random variables until you have generated n...
PLEASE USE R CODE!! Continue to generate standard normal random variables until you have generated n of them, where n≥100 is such that S/sqrt(n) <0.1, where S is the sample standard deviation of the n data value. (a)How many normals do you think will be generated? (b)What is the sample mean of all the normals generated? (c)What is the sample variance?
#Draw three histograms based on simulation draws (100,1000,10000)from a normal distribution with #mean 2 and standard...
#Draw three histograms based on simulation draws (100,1000,10000)from a normal distribution with #mean 2 and standard deviation 4. #Label the median and the mean of your simulation results for each histogram. Please using Rstudio to complete it. And submit it in R format.
1. the area under the normal distribution curve that lies within one standard deviation of the...
1. the area under the normal distribution curve that lies within one standard deviation of the mean is approxiamtely ____%. 2. for a normal distribution curve with a mean of 10 and a standard deviation of 5, what is the range of the variable thay defines the area under the curve correaponding to a probability of approximately 68%? true or false: 3. a probability can be greater than one, but not equal to zero. 4. quartiles are used in box...
Generate 1000 random numbers from Normal (mean=25, sd=3) and store in a vector. How many of...
Generate 1000 random numbers from Normal (mean=25, sd=3) and store in a vector. How many of these data points are greater than 26? (You can directly use built in functions in R or use conditional/unconditional iterations). Please provide your final R code and the output.