symbox first transforms x to each of a series
of selected powers, with each transformation standardized to mean 0 and
standard deviation 1. The results are then displayed side-by-side in boxplots, permiting
a visual assessment of which power makes the distribution reasonably symmetric.
symbox(x, ...)
# S3 method for formula
symbox(formula, data=NULL, subset, na.action=NULL, ylab, ...)
# S3 method for default
symbox(x, powers = c(-1, -0.5, 0, 0.5, 1), start=0,
trans=bcPower, xlab="Powers", ylab, ...)a numeric vector.
a one-sided formula specifying a single numeric variable.
as for statistical modeling functions (see, e.g., lm).
axis labels; if ylab is missing, a label will be supplied.
a vector of selected powers to which x is to be raised.
For meaningful comparison of powers, 1 should be included
in the vector of powers.
a constant to be added to x.
arguments to be passed down.
as returned by boxplot.
Fox, J. and Weisberg, S. (2011) An R Companion to Applied Regression, Second Edition. Sage.
# NOT RUN {
symbox(~ income, data=Prestige)
# }
Run the code above in your browser using DataLab