Create a hanging rootogram for a quantitative numeric vector and compare it to a Gaussian distribution.
rootonorm(x, breaks = "Sturges", type = c("hanging", "deviation"), scale = c("sqrt", "raw"), zeroline = TRUE, linecol = "red", rectcol = "lightgrey", xlab = xname, ylab = "Sqrt(frequency)", yaxt = "n", ylim = NULL, mu = mean(x), s = sd(x), gap = 0.1, ...)
x | a numeric vector of values for which the rootogram is desired |
---|---|
breaks | Either the character string ‘Sturges’ to use Sturges' algorithm to decide the number of breaks or a positive integer that sets the number of breaks. |
type | if |
scale | The type of transformation. Defaults to |
zeroline | logical; if |
linecol | The color of the density line for the normal distribution.
The default is to make a |
rectcol | a colour to be used to fill the bars. The default of
|
xlab, ylab | plot labels. The |
yaxt | Should y axis text be printed. Defaults to |
ylim | the range of y values with sensible defaults. |
mu | the mean of the Gaussian distribution. Defaults to the sample mean
of |
s | the standard deivation of the Gaussian distribution. Defaults to
the sample std.dev. of |
gap | The distance between the rectangles in the histogram. |
… | further arguments and graphical parameters passed to
|
Returns a vector of counts of each bar. This may be changed in the future. The plot is the primary output of the function.
The mean and standard deviation of the Gaussian distribution are calculated
from the observed data unless the mu
and s
arguments are
given.
Tukey, J. W. 1972. Some Graphic and Semigraphic Displays. In Statistical Papers in Honor of George W. Snedecor, p. 293-316.
oldpar <- par() par(mfrow=c(2,2)) rootonorm(rnorm(200)) rootonorm(rnorm(200), type="deviation", scale="raw") rootonorm(rnorm(200), mu=1) rootonorm(rexp(200), mu=1)par(oldpar)#> Warning: graphical parameter "cin" cannot be set#> Warning: graphical parameter "cra" cannot be set#> Warning: graphical parameter "csi" cannot be set#> Warning: graphical parameter "cxy" cannot be set#> Warning: graphical parameter "din" cannot be set#> Warning: graphical parameter "page" cannot be set