Learn R Programming

xpose4 (version 4.5.3)

change.graphical.parameters: Functions changing variable definitions in Xpose 4

Description

These functions allow customization of Xpose's graphics settings.

Usage

change.ab.graph.par(object, 
                    classic = FALSE) 
                
change.bw.graph.par(object, 
                    classic = FALSE)
                
change.cond.graph.par(object, 
                      classic = FALSE)
                
change.dil.graph.par(object, 
                     classic = FALSE)
                
change.label.par(object,
                 classic = FALSE)
                                      
change.lm.graph.par(object, 
                    classic = FALSE) 
                
change.misc.graph.par(object, 
                      classic = FALSE) 
                
change.pi.graph.par(object, 
                    classic = FALSE)

change.smooth.graph.par(object, classic = FALSE)

Arguments

object

An xpose.data object.

classic

A logical operator specifying whether the function should assume the classic menu system. This is an internal option and need never be called from the command line.

Value

An xpose.data object (classic == FALSE) or null (classic == TRUE).

Details

These functions are used to customize graphics settings, the way Xpose draws its graphs. change.misc.graph.par sets basic graphics parameters, including plot type, point type and size, colour, line type, and line width. change.ab.graph.par is used to change settings for the line of identity, change.lm.graph.par is responsible for linear regression lines, change.smooth.graph.par sets preferences for loess smooths, change.bw.graph.par sets preferences for box-and-whisker plots, and change.label.par, change.dil.graph.par and change.pi.graph.par functions are responsible for labelling, dilution and prediction interval plotting preferences, respectively. change.cond.graph.par sets preferences for conditioning.

Settings can be saved and loaded using export.graph.par and import.graph.par, respectively.

See Also

xpose.plot.default,xpose.panel.default, xpose.plot.bw,xpose.panel.bw, xpose.plot.default,import.graph.par, export.graph.par,plot.default, par,import.graph.par,panel.abline, panel.lmline,lm,panel.loess, loess.smooth,loess,panel.bwplot, shingle,reorder.factor

Examples

Run this code

## xpdb5 is an Xpose data object
## We expect to find the required NONMEM run and table files for run
## 5 in the current working directory
xpdb5 <- xpose.data(5)

## Change default miscellaneous graphic preferences
xpdb5 <- change.misc.graph.par(xpdb5)

## Change default linear regression line preferences, creating a new 
## object
xpdb5.a <- change.lm.graph.par(xpdb5)

## Change conditioning preferences
xpdb5 <- change.cond.graph.par(xpdb5)

Run the code above in your browser using DataLab