Usage
basicPowerAxis(power, base=exp(1), 
    side=c("right", "above", "left", "below"), 
    at, start=0, lead.digits=1, n.ticks, grid=FALSE, grid.col=gray(0.50), 
    grid.lty=2,
    axis.title="Untransformed Data", cex=1, las=par("las"))
bcPowerAxis(power, side=c("right", "above", "left", "below"), 
    at, start=0, lead.digits=1, n.ticks, grid=FALSE, grid.col=gray(0.50), 
    grid.lty=2,
    axis.title="Untransformed Data", cex=1, las=par("las"))
    
yjPowerAxis(power, side=c("right", "above", "left", "below"), 
	at, lead.digits=1, n.ticks, grid=FALSE, grid.col=gray(0.50), 
  grid.lty=2,
	axis.title="Untransformed Data", cex=1, las=par("las"))
probabilityAxis(scale=c("logit", "probit"), 
	side=c("right", "above", "left", "below"),
	at, lead.digits=1, grid=FALSE, grid.lty=2, grid.col=gray(0.50),
    axis.title = "Probability", interval = 0.1, cex = 1, las=par("las"))Arguments
power
power for Box-Cox, Yeo-Johnson, or simple power transformation.
scale
transformation used for probabilities, "logit"
    (the default) or "probit".
side
side at which the axis is to be drawn; numeric
   codes are also permitted: side = 1 for the bottom of the plot,
   side=2 for the left side, 
   side = 3 for the top, side = 4 for the right side.
at
numeric vector giving location of tick marks on
    original scale; if missing, the function will try to pick
    nice locations for the ticks.
start
if a start was added to a variable (e.g., to make all
  	data values positive), it can now be subtracted from the tick labels.
lead.digits
number of leading digits for determining `nice' numbers 
	for tick labels (default is 1.
n.ticks
number of tick marks; if missing, same as corresponding
  	transformed axis.
grid
if TRUE grid lines for the axis will be drawn.
grid.col
color of grid lines.
grid.lty
line type for grid lines.
axis.title
title for axis.
cex
relative character expansion for axis label.
las
if 0, ticks labels are drawn parallel to the
    axis; set to 1 for horizontal labels (see par). base
base of log transformation for power.axis
    when power = 0.
interval
desired interval between tick marks on the probability
    scale.