View source: R/plot.permutest.rma.uni.r
plot.permutest.rma.uni | R Documentation |
Function to plot objects of class "permutest.rma.uni"
.
## S3 method for class 'permutest.rma.uni'
plot(x, beta, alpha, QM=FALSE, QS=FALSE,
breaks="Scott", freq=FALSE, col, border, col.out, col.ref, col.density,
trim=0, adjust=1, lwd=c(2,0,0,4), layout, legend=FALSE, ...)
x |
an object of class |
beta |
optional vector of indices to specify which (location) coefficients should be plotted. |
alpha |
optional vector of indices to specify which scale coefficients should be plotted. Only relevant for location-scale models (see |
QM |
logical to specify whether the permutation distribution of the omnibus test of the (location) coefficients should be plotted (the default is |
QS |
logical to specify whether the permutation distribution of the omnibus test of the scale coefficients should be plotted (the default is |
breaks |
argument to be passed on to the corresponding argument of |
freq |
logical to indicate whether frequencies or probability densities should be plotted (the default is |
col |
optional character string to specify the color of the histogram bars. |
border |
optional character string to specify the color of the borders around the bars. |
col.out |
optional character string to specify the color of the bars that are more extreme than the observed test statistic (the default is a semi-transparent shade of red). |
col.ref |
optional character string to specify the color of the theoretical reference/null distribution that is superimposed on top of the histogram (the default is a dark shade of gray). |
col.density |
optional character string to specify the color of the kernel density estimate of the permutation distribution that is superimposed on top of the histogram (the default is blue). |
trim |
the fraction (up to 0.5) of observations to be trimmed from the tails of each permutation distribution before its histogram is plotted. |
adjust |
numeric value to be passed on to the corresponding argument of |
lwd |
numeric vector to specify the width of the vertical lines corresponding to the value of the observed test statistic, of the theoretical reference/null distribution, of the density estimate, and of the vertical line at 0 (note: by default, the theoretical reference/null distribution and the density estimate both have a line width of 0 and are therefore not plotted). |
layout |
optional vector of two numbers to specify the number of rows and columns for the layout of the figure. |
legend |
logical to indicate whether a legend should be added to the plot (the default is |
... |
other arguments. |
The function plots the permutation distribution of each model coefficient as a histogram.
For models with moderators, one can choose via argument beta
which coefficients to plot (by default, all permutation distributions except that of the intercept are plotted). One can also choose to plot the permutation distribution of the omnibus test of the model coefficients (by setting QM=TRUE
).
Arguments breaks
, freq
, col
, and border
are passed on to the hist
function for the plotting.
Argument trim
can be used to trim away a certain fraction of observations from the tails of each permutation distribution before its histogram is plotted. By setting this to a value above 0, one can quickly remove some of the extreme values that might lead to the bulk of the distribution getting squished together at the center (typically, a small value such as trim=0.01
is sufficient for this purpose).
The observed test statistic is indicated as a vertical dashed line (in both tails for a two-sided test).
Argument col.out
is used to specify the color for the bars in the histogram that are more extreme than the observed test statistic. The p-value of a permutation test corresponds to the area of these bars.
One can superimpose the theoretical reference/null distribution on top of the histogram (i.e., the distribution as assumed by the model). The p-value for the standard (i.e., non-permutation) test is the area that is more extreme than the observed test statistic under this reference/null distribution.
A kernel density estimate of the permutation distribution can also be superimposed on top of the histogram (as a smoothed representation of the permutation distribution).
Note that the theoretical reference/null distribution and the kernel density estimate of the permutation distribution are only shown when setting the line width for these elements greater than 0 via the lwd
argument (e.g., lwd=c(2,2,2,4)
).
For location-scale models (see rma.uni
for details), one can also use arguments alpha
and QS
to specify which scale coefficients to plot and whether to also plot the permutation distribution of the omnibus test of the scale coefficients (by setting QS=TRUE
).
Wolfgang Viechtbauer wvb@metafor-project.org https://www.metafor-project.org
Viechtbauer, W. (2010). Conducting meta-analyses in R with the metafor package. Journal of Statistical Software, 36(3), 1–48. https://doi.org/10.18637/jss.v036.i03
permutest
for the function to create permutest.rma.uni
objects.
### calculate log risk ratios and corresponding sampling variances
dat <- escalc(measure="RR", ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg)
### random-effects model
res <- rma(yi, vi, data=dat)
res
## Not run:
### permutation test (exact)
permres <- permutest(res, exact=TRUE)
permres
### plot of the permutation distribution
### dashed horizontal line: the observed value of the test statistic (in both tails)
### black curve: standard normal density (theoretical reference/null distribution)
### blue curve: kernel density estimate of the permutation distribution
plot(permres, lwd=c(2,3,3,4))
### mixed-effects model with two moderators (absolute latitude and publication year)
res <- rma(yi, vi, mods = ~ ablat + year, data=dat)
res
### permutation test (approximate)
set.seed(1234) # for reproducibility
permres <- permutest(res, iter=10000)
permres
### plot of the permutation distribution for absolute latitude
### note: the tail area under the permutation distribution is larger
### than under a standard normal density (hence, the larger p-value)
plot(permres, beta=2, lwd=c(2,3,3,4), xlim=c(-5,5))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.