Question
QUESTION: Summarize the variable outcome_handwash using the appropriate measures of central tendency and spread. Calculate the standard error of the mean, construct a 95% confidence
QUESTION: Summarize the variable outcome_handwash using the appropriate measures of central tendency and spread. Calculate the standard error of the mean, construct a 95% confidence interval for the mean and interpret these two uncertainty measures (standard error and confidence interval). For the uncertainty calculations, rely on your own calculations (you can use R for these) and also present the formulas you used.
** I have already run the R code, therefore I need help regarding interpretation, uncertainty , formulas etc...
Results are as follow:
summary(cv$outcome_handwash)
Min. 1st Qu.MedianMean 3rd Qu.Max.
0.008.0012.0014.6420.0090.00
> ee = sd(cv$outcome_handwash)/sqrt(nrow(cv))
> print(paste("upper limit: ",round(mean(cv$outcome_handwash)+(z.005*ee),4),"lower limit: ",round(mean(cv$outcome_handwash)-(z.005*ee),4)))
[1] "upper limit:15.2956 lower limit:13.9895"
ee= 0.333204207808019
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started