Compute the relative difference
Computes the relative difference statistic of the form (est - pop)/ pop
, which
is equivalent to the form est/pop - 1
. If matrices are supplied then
an equivalent matrix variant will be used of the form
(est - pop) * solve(pop)
. Values closer to 0 indicate better
relative parameter recovery. Note that for single variable inputs this is equivalent to
bias(..., type = 'relative')
.
RD(est, pop, as.vector = TRUE, unname = FALSE)
est |
a |
pop |
a |
as.vector |
logical; always wrap the result in a |
unname |
logical; apply |
returns a vector
or matrix
depending on the inputs and whether
as.vector
was used
Phil Chalmers rphilip.chalmers@gmail.com
Chalmers, R. P., & Adkins, M. C. (2020). Writing Effective and Reliable Monte Carlo Simulations
with the SimDesign Package. The Quantitative Methods for Psychology, 16
(4), 248-280.
doi: 10.20982/tqmp.16.4.p248
Sigal, M. J., & Chalmers, R. P. (2016). Play it again: Teaching statistics with Monte
Carlo simulation. Journal of Statistics Education, 24
(3), 136-156.
doi: 10.1080/10691898.2016.1246953
# vector pop <- seq(1, 100, length.out=9) est1 <- pop + rnorm(9, 0, .2) (rds <- RD(est1, pop)) summary(rds) # matrix pop <- matrix(c(1:8, 10), 3, 3) est2 <- pop + rnorm(9, 0, .2) RD(est2, pop, as.vector = FALSE) (rds <- RD(est2, pop)) summary(rds)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.