this in r language  The following code is a simulation of the central limit theorem. In the code we generate 36 observations from a random exponential distribution with mean 1 and variance 1. We then use a for loop to generate averages of these 36 observations to display in a histogram.   Run the following code in R and select all answers that apply based on the code. I would also suggest running the code more than one as the numbers generated are random and results will vary slightly. CODE: #Generating data data.exp = rexp(36) par(mfrow=c(2,1)) hist(data.exp, main = 'Histogram of exponential with mean 1')

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

this in r language 

The following code is a simulation of the central limit theorem. In the code we generate 36 observations from a random exponential distribution with mean 1 and variance 1. We then use a for loop to generate averages of these 36 observations to display in a histogram.

 

Run the following code in R and select all answers that apply based on the code. I would also suggest running the code more than one as the numbers generated are random and results will vary slightly.

CODE:


#Generating data
data.exp = rexp(36)
par(mfrow=c(2,1))
hist(data.exp, main = 'Histogram of exponential with mean 1')


#Gererate averages for the central limit theorem
#I.e. data set of averages
bar = c(1:500)#store the averages
for (i in c(1:500)) {
data.exp = rexp(36)
bar[i] = mean(data.exp)
}
hist(bar, main = 'Histogram of data set of averages for CLT')

sprintf("Theoretical mean of data.exp: %s", 1)
sprintf("mean of the average: %s", mean(bar))
sprintf("Theoretical variance of data.exp: %s", 1)
sprintf("variance of the average: %s", var(bar))

The original data set is normally distributed.
The data set of averages is NOT approximately normally distributed.
The variance of the exponential is approximately equal to the variance of the averages.
The mean of the exponential is NOT approximately equal to the mean of averages the
The mean of the exponential is approximately equal to the mean of averages the
The variance of the averages is approximately equal to the variance of the exponential divided by N.
The original data set is NOT normally distributed
The data set of averages is approximately normally distributed.
Transcribed Image Text:The original data set is normally distributed. The data set of averages is NOT approximately normally distributed. The variance of the exponential is approximately equal to the variance of the averages. The mean of the exponential is NOT approximately equal to the mean of averages the The mean of the exponential is approximately equal to the mean of averages the The variance of the averages is approximately equal to the variance of the exponential divided by N. The original data set is NOT normally distributed The data set of averages is approximately normally distributed.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY