qq_plot {qqvases} | R Documentation |
This function uses Shiny to open the default web browser. Graphical controls manipulate the construction of an interactive normal QQ plot.
qq_plot(data, step = 0.05, breaks = "FD")
data |
Numerical data vector. |
step |
Stepsize used for Shiny slider (use larger values if animating with play button) |
breaks |
Passed to histogram for empirical distribution (default = "FD") |
None
## Not run:
qq_plot(rnorm(50))
qq_plot(rnorm(50), step=0.05, breaks="Sturges")
if(require("MASS", quietly=TRUE)){ qq_plot(geyser$waiting) }
## End(Not run)