
Last chance! 50% off unlimited learning
Sale ends in
phase1Plot
and mphase1Plot
plot univariate or multivariate Phase 1 observations,
organized as required by the dfphase1
package.
phase1Plot(x)mphase1Plot(x, layout = c(1, p))
phase1Plot
: a nxm numeric matrix or a numeric vector of
length m.
mphase1Plot
: a pxnxm data numeric array
or a pxm numeric matrix.
Here, p denotes the number of variables, n the size of each subgroup and m the number of subgroups.
an integer vector describing the multi-panel (and possible multi-page) layout. See the third example below.
tools:::Rd_package_author("dfphase1").
x <- matrix(rt(5*20,5),5)
x[,10] <- x[,10]+3
phase1Plot(x)
# a data set with many variables
x <- array(rnorm(20*5*50),c(20,5,50))+10*(1:20)
mphase1Plot(x)
# it is better to organize the plot on two pages
if (interactive()) old <- grDevices::devAskNewPage(TRUE)
mphase1Plot(x,c(2,5,2))
if (interactive()) grDevices::devAskNewPage(old)
Run the code above in your browser using DataLab