Quantile-Quantile Plots for Resample Objects

DESCRIPTION:

Produces quantile-quantile plots of the columns of replicates against the appropriate quantiles of the normal distribution.

USAGE:

qqnorm.resamp(x, nrow=NULL, grid.layout=T, lines=T, ...) 

REQUIRED ARGUMENTS:

x
object of class resamp. Such objects are created by bootstrap and jackknife.

OPTIONAL ARGUMENTS:

nrow
number of rows of plots on the screen. If nrow is NULL and x has a dim.obs component, it is used to determine nrow. Otherwise, two rows are used unless there is only a single parameter.
grid.layout
logical flag indicating whether to display plots in a single grid or as separate plots when the resampled statistic is a vector.
lines
logical flag indicating whether to add a qqline to each plot. This line passes through the first and third quartiles of the data, and the corresponding quantiles of the standard normal distribution.
...
other arguments passed down to qqnorm.

VALUE:

no value is returned.

SIDE EFFECTS:

Produces the abovementioned plot.

SEE ALSO:

, , , .

EXAMPLES:

temp <- bootstrap(stack.loss,var) 
qqnorm(temp)