Usage
## S3 method for class 'default':
funnel(x, y,
xlim=NULL, ylim=NULL, xlab=NULL, ylab=NULL,
comb.fixed=FALSE, comb.random=FALSE,
axes=TRUE,
pch=21, text=NULL, cex=1,
lty.fixed=2, lty.random=9,
lwd=1, lwd.fixed=lwd, lwd.random=lwd,
col="black", bg="darkgray",
col.fixed="black", col.random="black",
log="", yaxis="se", sm=NULL,
contour.levels=NULL, col.contour,
ref=ifelse(sm \%in\% c("RR", "OR", "HR"), 1, 0),
level=NULL,
studlab=FALSE, cex.studlab=0.8, ...)## S3 method for class 'meta':
funnel(x,
xlim=NULL, ylim=NULL, xlab=NULL, ylab=NULL,
comb.fixed=x$comb.fixed, comb.random=x$comb.random,
axes=TRUE,
pch=if (!inherits(x, "trimfill")) 21 else ifelse(x$trimfill, 1, 21),
text=NULL, cex=1,
lty.fixed=2, lty.random=9,
lwd=1, lwd.fixed=lwd, lwd.random=lwd,
col="black", bg="darkgray",
col.fixed="black", col.random="black",
log="", yaxis="se",
contour.levels=NULL, col.contour,
ref=ifelse(x$sm %in% c("RR", "OR", "HR"), 1, 0),
level=x$level,
studlab=FALSE, cex.studlab=0.8, ...)
## S3 method for class 'default':
radial(x, y, xlim=NULL, ylim=NULL,
xlab="Inverse of standard error",
ylab="Standardised treatment effect (z-score)",
comb.fixed=TRUE, axes=TRUE,
pch=1, text=NULL, cex=1, col=NULL,
level=NULL, ...)
## S3 method for class 'meta':
radial(x, xlim=NULL, ylim=NULL,
xlab="Inverse of standard error",
ylab="Standardised treatment effect (z-score)",
comb.fixed=TRUE, axes=TRUE,
pch=1, text=NULL, cex=1, col=NULL,
level=NULL, ...)
Arguments
x
An object of class meta
, or estimated treatment
effect in individual studies.
y
Standard error of estimated treatment effect.
xlim
The x limits (min,max) of the plot.
ylim
The y limits (min,max) of the plot.
xlab
A label for the x axis.
ylab
A label for the y axis.
comb.fixed
A logical indicating whether the pooled fixed effect
estimate should be plotted.
comb.random
A logical indicating whether the pooled random
effects estimate should be plotted.
axes
A logical indicating whether axes should be drawn on the
plot.
pch
The plotting symbol used for individual studies.
text
A character vector specifying the text to be used instead
of plotting symbol.
cex
The magnification to be used for plotting symbol.
lty.fixed
Line type (pooled fixed effect estimate).
lty.random
Line type (pooled random effects estimate).
col
A vector with colour of plotting symbols.
bg
A vector with background colour of plotting symbols (only
used if pch
in 21:25
).
col.fixed
Color of line representign fixed effect estimate.
col.random
Color of line representign random effects estimate.
lwd
The line width for confidence intervals (if level
is
not NULL
).
lwd.fixed
The line width for fixed effect estimate (if
comb.fixed
is not NULL
).
lwd.random
The line width for random effects estimate (if
comb.random
is not NULL
).
log
A character string which contains "x"
if the x axis
is to be logarithmic, "y"
if the y axis is to be logarithmic
and "xy"
or "yx"
if both axes are to be logarithmic
(applies only to function
yaxis
A character string indicating which type of weights are
to be used. Either "se"
, "invvar"
, "invse"
, or "size"
(applies only to function funnel
).
sm
A character string indicating underlying summary measure,
e.g., "RD"
, "RR"
, "OR"
, "AS"
, "MD"
,
"SMD"
(applies only to function funnel
).
contour.levels
A numeric vector specifying contour levels to
produce contour-enhanced funnel plot.
col.contour
Colour of contours.
ref
Reference value (null effect) used to produce
contour-enhanced funnel plot.
level
The confidence level utilised in the plot. For the funnel
plot, confidence limits are not drawn if yaxis="size"
.
studlab
A logical indicating whether study labels should be
printed in the graph. A vector with study labels can also be
provided (must be of same length as x$TE
then).
cex.studlab
Size of study labels.
...
Graphical arguments as in par
may also be
passed as arguments.