Plot fitted z-curve object
Fitted z-curve object
Add annotation to the plot. Defaults
to FALSE
.
Plot confidence intervals for the estimated z-curve. Defaults
to FALSE
.
Scale the chart to the extrapolated area. Defaults
to FALSE
.
Type of plot to by produced. Defaults to "base"
for th base plotting function. An alternative is "ggplot"
for a
ggplot2.
A vector of length 8 specifying the y-positions
of the individual annotation lines relative to the figure's height.
Defaults to c(.95, .88, .78, .71, .61, .53, .43, .35)
A number specifying the x-position of the block of annotations relative to the figure's width.
A number specifying the size of the annotation text.
Additional arguments including main
, xlab
,
ylab
, xlim
, ylim
, cex.axis
, cex.lab
if (FALSE) {
# simulate some z-statistics and fit a z-curve
z <- abs(rnorm(300,3))
m.EM <- zcurve(z, method = "EM", bootstrap = 100)
# plot the z-curve
plot(m.EM)
# add annotation text and model fit CI
plot(m.EM, annotation = TRUE, CI = TRUE)
# change the location of the annotation to the left
plot(m.EM, annotation = TRUE, CI = TRUE, x_text = 0)
}