This function automates the calculation of coverage rates for exploring the robustness of confidence interval methods.
CIsim(n, samples = 100, rdist = rnorm, args = list(), plot = if (samples
size of each sample
number of samples to simulate
function used to draw random samples
arguments required by rdist
one of "print"
, "return"
, "horizontal"
, or "none"
describing whether a plot should be printed, returned, printed with horizontal intervals,
or not generated at all.
true value of the parameter being estimated
confidence level for intervals
function used to compute intervals. Standard functions that
produce an object of class htest
can be used here.
arguments required by method
a function that computes a confidence interval from data. Function should return a vector of length 2.
a function that computes an estimate from data
print summary to screen?
A data frame with variables
lower
,
upper
,
estimate
,
cover
('Yes' or 'No'),
and
sample
is returned invisibly. See the examples for a way to use this to display the intervals
graphically.
# NOT RUN {
# 1000 95% intervals using t.test; population is N(0,1)
CIsim(n=10, samples=1000)
# this time population is Exp(1); fewer samples, so we get a plot
CIsim(n=10, samples=100, rdist=rexp, estimand=1)
# Binomial treats 1 like success, 0 like failure
CIsim(n=30, samples=100, rdist=rbinom, args=list(size=1, prob=.7),
estimand = .7, method = binom.test, method.args=list(ci = "Plus4"))
# }
Run the code above in your browser using DataLab