plot.metaoutliers {altmeta}R Documentation

Standardized Residual Plot for Outliers Diagnostics

Description

Draws a plot showing study-specific standardized residuals.

Usage

## S3 method for class 'metaoutliers'
plot(x, xtick.cex = 1, ytick.cex = 0.5, ...)

Arguments

x

an object created by the function metaoutliers().

xtick.cex

a numerical value indicating the magnification to be used for ticks on x-axis.

ytick.cex

a numerical value indicating the magnification to be used for ticks on y-axis.

...

Other arguments can be passed to plot() function.

See Also

metaoutliers

Examples

data("aex")
attach(aex)
out.aex <- metaoutliers(y, s2, model = "FE")
detach(aex)
plot(out.aex)

data("hipfrac")
attach(hipfrac)
out.hipfrac <- metaoutliers(y, s2, model = "RE")
detach(hipfrac)
plot(out.hipfrac)

[Package altmeta version 2.2 Index]