Message-ID: <287735883.448015.1596550086626@mail.yahoo.com>
Date: 2020-08-04T14:08:06Z
From: varin sacha
Subject: confidence intervals for the difference between group means
Dear R-experts,
Using the bootES package I can easily calculate the bootstrap confidence intervals of the means like in the toy example here below. Now, I am looking for the confidence intervals for the difference between group means. In my case, the point estimate of the mean difference is 64.4. I am looking at the 95% confidence intervals around this point estimate (64.4).
Many thanks for your response.
############
library(bootES)
a<-c(523,435,478,567,654)
b<-c(423,523,421,467,501)
bootES(a)
bootES(b)
############