Use R code Part1) Central Limit Theorem Initialize the city of…

Question Use R code Part1) Central Limit Theorem Initialize the city of… Use R code Part1) Central Limit Theorem Initialize the city of Boston earnings dataset as shown below:boston <- read.csv( "https://people.bu.edu/kalathur/datasets/bostonCityEarnings.csv", colClasses = c("character", "character", "character", "integer", "character"))The data in the file contains the total earnings of the employees of city of Boston. a) Show the histogram of the employee earnings. Use breaks from 40000 to 400000 in steps of 20000 and show the corresponding tick labels on the x-axis. Compute the mean and standard deviation of this data. What do you infer from the shape of the histogram?b) Draw 5000 samples of this data of size 10, show the histogram of the sample means. Compute the mean of the sample means and the standard deviation of the sample means. Use sample() function with replace as FALSE for drawing the samples. Set the start seed for random numbers as 1234.c) Draw 5000 samples of this data of size 40, show the histogram of the sample means. Compute the mean of the sample means and the standard deviation of the sample means. Use sample() function with replace as FALSE for drawing the samples. Set the start seed for random numbers as 1234.d) Compare of means and standard deviations of the above three distributions. Math Statistics and Probability matlab CS 544 Share QuestionEmailCopy link Comments (0)