Question

Obtain the jackknife estimates of bias and standard error of ˆθ^. 3, 5, 7, 18, 43,...

Obtain the jackknife estimates of bias and standard error of ˆθ^.

3, 5, 7, 18, 43, 85, 91, 98, 100, 130, 230, 487.

Use R software

Homework Answers

Answer #1

Sol:

Rcode:


library(bootstrap)
est <- c(3, 5, 7, 18, 43, 85, 91, 98, 100, 130, 230, 487)
res<- jackknife(est, median)
c(res$jack.bias, res$jack.se)

Output:

0.000000 9.949874

Also alternatively use can also use

library(UsingR)
x <- est
n <- length(x)
theta <- median(x)
jk <- sapply(1 : n,
function(i) median(x[-i])
)
thetaBar <- mean(jk)
biasEst <- (n - 1) * (thetaBar - theta)
seEst <- sqrt((n - 1)* mean((jk - thetaBar)^2))

c(biasEst, seEst)

jack knife estimate of bias is 0

jack knife estimate of standard error is 9.949874

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
Refer to the air-conditioning data set aircondit provided in the boot package. The 12 observations are...
Refer to the air-conditioning data set aircondit provided in the boot package. The 12 observations are the times in hours between failures of air-conditioning equipment 3, 5, 7, 18, 43, 85, 91, 98, 100, 130, 230, 487. Assume that the times between failures follow an exponential model Exp(λ). Obtain the MLE of the hazard rate λ and use bootstrap to estimate the bias and standard error of the estimate Use R software .
The mean of a normally distributed data set is 112, and the standard deviation is 18....
The mean of a normally distributed data set is 112, and the standard deviation is 18. a) Use the Empirical Rule to find the probability that a randomly-selected data value is greater than 130. b) Use the Empirical Rule to find the probability that a randomly-selected data value is greater than 148. A psychologist wants to estimate the proportion of people in a population with IQ scores between 85 and 130. The IQ scores of this population are normally distributed...
Consider the samples f1; 2; 3; 4; 5; 6g. Using a random number generator, obtain three...
Consider the samples f1; 2; 3; 4; 5; 6g. Using a random number generator, obtain three different bootstrap samples and their respective means. What is the bootstrap estimate of the standard error of the sample mean using these three replicates? Written not in R
a) Calculate the standard deviation and variance for the distribution below: 3, 4, 5, 5, 6,...
a) Calculate the standard deviation and variance for the distribution below: 3, 4, 5, 5, 6, 7 b) '80, 90, 100, 110' 'and' '91, 92, 93, 94 '' value groups have been given. The standard deviation of the first group is 12.9, the second group is 1.29. Interpret the result by calculating the coefficients of variation for both value groups.
For the data set shown​ below, complete parts​ (a) below. x 3 4 5 7 8...
For the data set shown​ below, complete parts​ (a) below. x 3 4 5 7 8 y 5 6 7 11 14 ​  Find the estimates of beta 0 and beta 1. beta = -1.070 ​beta 1=1.791 Compute the standard​ error, the point estimate for sigma. s Subscript = ​(Round to four decimal places as​ needed.)
Month 1 2 3 4 5 6 7 Value 22 13 18 12 18 23 14...
Month 1 2 3 4 5 6 7 Value 22 13 18 12 18 23 14 Consider the time series data b. Develop the three-month moving average forecasts for this time series. Compute MSE and a forecast for month 8 (to 2 decimals if necessary). Enter negative values as negative number. Month Time Series Value Forecast Forecast Error Squared Forecast Error Totals MSE The forecast for month 8 c. Use a=.2 to compute the exponential smoothing forecasts for the time...
Consider the following time series data. Month 1 2 3 4 5 6 7 Value 24...
Consider the following time series data. Month 1 2 3 4 5 6 7 Value 24 13 18 12 18 23 15 b. Develop the three-month moving average forecasts for this time series. Compute MSE and a forecast for month 8 (to 2 decimals if necessary). Enter negative values as negative number. Month Time Series Value Forecast Forecast Error Squared Forecast Error 1 24 2 13 3 18 4 12 ? ? ? 5 18 ? ? ? 6 23...
Consider the matrix A= −2−2 6] [−2−3 5] [3 4−8] [−7−9 18 (all one matrix) (a)...
Consider the matrix A= −2−2 6] [−2−3 5] [3 4−8] [−7−9 18 (all one matrix) (a) How many rows ofAcontain a pivot position? (b) Do the columns ofAspanR4? (c) Does the equationA ~x=~b have a solution for every~b∈R^4? (d) Would the equation A~x=~0 have a nontrivial solution? (e) Are the columns of A linearly independent? (~x is vector x)
Activity #4 Standard Deviation and Standard Error Imagine you are a researcher for the Tesla Motor...
Activity #4 Standard Deviation and Standard Error Imagine you are a researcher for the Tesla Motor Company interested in learning the maximum price consumers are willing to pay for an electric truck. As a pretest, you conducted a small survey from a convenience sample of 25 shoppers at a local mall and asked participants to state how much they would be willing to pay for a brand new electric truck (i.e., Cybertruck) like the one pictured above. The results of...
-6 -6 -2 2 2 2 2 3 4 5 6 6 7 9 13 If...
-6 -6 -2 2 2 2 2 3 4 5 6 6 7 9 13 If this data was entered into R Studio (statistic software), using a particular data = c(enter data above here), how would I show that all the conditions required to use T distributions have been met? what is the difference between one-sample T test and a two-sample T test? what conditions have to be met?
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT