powered by
Function to identify the available plot types of an object.
plotTypes( obj, output = c("numeric", "caption", "numcap", "capnum"), numberInCaptionEnabled = FALSE )getAvailablePlotTypes( obj, output = c("numeric", "caption", "numcap", "capnum"), numberInCaptionEnabled = FALSE )
getAvailablePlotTypes( obj, output = c("numeric", "caption", "numcap", "capnum"), numberInCaptionEnabled = FALSE )
Depending on how the output is specified, a numeric vector, a character vector, or a list will be returned.
output
The object for which the plot types shall be identified, e.g. produced by getDesignGroupSequential or getSampleSizeMeans.
getDesignGroupSequential
getSampleSizeMeans
The output type. Can be one of c("numeric", "caption", "numcap", "capnum").
c("numeric", "caption", "numcap", "capnum")
If TRUE, the number will be added to the caption, default is FALSE.
TRUE
FALSE
plotTypes and getAvailablePlotTypes are equivalent, i.e., plotTypes is a short form of getAvailablePlotTypes.
plotTypes
getAvailablePlotTypes
output:
numeric: numeric output
numeric
caption: caption as character output
caption
numcap: list with number and caption
numcap
capnum: list with caption and number
capnum
design <- getDesignInverseNormal(kMax = 2) getAvailablePlotTypes(design, "numeric") plotTypes(design, "caption") getAvailablePlotTypes(design, "numcap") plotTypes(design, "capnum")
Run the code above in your browser using DataLab