inst/snippet/t-robust-exp.R

# an example CI from a sample of size 20
t.test(rexp(20,1/10))$conf.int           
# 10,000 simulated samples of size 20
CIsim(n=20, samples=10000, estimand=10, rdist=rexp, args=list(rate=1/10))
#
# an example CI from a sample of size 5
t.test(rexp(5,1/10))$conf.int           
# 10,000 simulated samples of size 5
CIsim(n=5, samples=10000, estimand=10, rdist=rexp, args=list(rate=1/10))
#
# an example CI from a sample of size 2
t.test(rexp(2,1/10))$conf.int           
# 10,000 simulated samples of size 2
CIsim(n=2, samples=10000, estimand=10, rdist=rexp, args=list(rate=1/10))

Try the fastR package in your browser

Any scripts or data that you put into this service are public.

fastR documentation built on May 1, 2019, 11:18 p.m.