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,  
              subset.statistic = 1:p, ..., main) 

REQUIRED ARGUMENTS:

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

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 to each plot. This line passes through the first and third quartiles of the data, and the corresponding quantiles of the standard normal distribution.
subset.statistic
subscript expression; if the statistic has length greater than 1, use this to request plots for only some elements (parameters) of the statistic.
...
other arguments passed down to qqnorm.
main
character, if supplied is used as the main title; otherwise a default title is used. Use main="" to avoid a title.

VALUE:

no value is returned.

SIDE EFFECTS:

Produces the abovementioned plot.

SEE ALSO:

, , , .

EXAMPLES:

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