logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Anthony BidiniiData mining
(5/5)

684 Answers

Hire Me
expert
Elyza Marice GamissManagement
(5/5)

952 Answers

Hire Me
expert
Sumit DabraPhilosophy
(5/5)

759 Answers

Hire Me
expert
Paul BurlinggComputer science
(5/5)

627 Answers

Hire Me
R Programming

Create a histogram to show the sample data. Overlay a red theoretical normal density curve on the histogram

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

STAT 1301/2300: Statistical Packages

Homework 8

Problem 1. Probability distributions and graphical displays (10 points)

Part 1.a. Generate 1000 observations from a normal distribution with mean 100 and standard deviation 15. Call the random number vector norm_vec. (2 points)

Part 1.b. Create a histogram to show the sample data. Overlay a red theoretical normal  density curve on the histogram. (4 points)

Notes:

  1. Make sure the normal curve can be completely Adjust ylim if necessary.

  2. Make sure the normal curve is a bell curve. If you see a straight line. That’s wrong. Read the slides carefully about how to cope with

 

Part 1.c. Calculate the following (4 points)

  • The 90th percentile of an F distribution with 5 and 10 degrees of

  • Calculate the probability P (t19 > 3).

  • Calculate the probability P (−1.98 < Z < 2.98) where Z ∼ N (0, 1).

  • Find the 99th percentile of χ2

 

Problem 2. Sampling distributions (15 points)

Part 2.a. Generate 10000 observations from χ2 distribution. Save the random numbers in a vector called chisq_vec. Create a histogram for it. Observe the shape, especially the skewness of it. (3 points)

Part 2.b. Sample 50 observations from chisq_vec without replacement. Call it chisq_samp. Calculate the mean of the sample data. Compare it with the mean of chisq_vec. (3 points)

Part 2.c. Put chisq_vec in a matrix with 50 rows and 200 columns. Call it chisq_mat. (1 point)

Part 2.d. Consider each column of chisq_mat as a random sample of size 50 from χ2 distribution. Now we have 200 samples (columns)! Calculate the mean of each column and save the means in a vector called mean_vec. You may use the apply() function. Type ?apply in R console for details about apply. (2 points)

Part 2.e. mean_vec actually contains 100 sample means! Now we are able to verify the properties of the sampling distribution of sample mean. (6 points)

  • Calculate the mean and standard devation of mean_vec. (2 points)

Compare them with their theoretical values. Note that for an χ2 distribution, the mean is k and the variance is 2k. And, based on the property of sampling distribution of sample mean, we have the following:

where n is the sample size.

 

  • Create a histogram for mean_vec. What shape do you observe? Is it roughly symmetric? Compare it with the one of chisq_vec. (1 points)

 

  • Overlay an empirical normal curve on the histogram of mean_vec. In order to do so, you need to create a sequence of consecutive numbers using seq. Check the range of mean_vec for the from and to values of seq. Use dnorm() function to ftnd the density values.  The mean and std of dnorm should be the same with the mean and std of mean_vec. (3 points)

 

Problem 3. Plot grouped data (5 points)

The mtcars data set is a built-in data set in base R. It comprises fuel consumption and 10 aspects of automobile design and performance for 32 automobiles (1973-74 models). Type ?mtcars in R console for more details about it.

We want to examine the relationship between type of transmission (am) and fuel efficiency (mpg). Use a side-by-side boxplot the compare mpg between the two groups. (5 points)

Requirements:

  1. It should be

  2. The title should be “Fuel Efficiency vs. Transmission”

  3. The x label should be “miles per gallon”

  4. Give meaningful names for the transmission levels and show them on the Instead of changing the labels directly, you may consider transforming am to a factor vector and giving character labels to the levels.

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme