circular_qqplot | R Documentation |
Uniformly distributed orientations should yield a straight line through the origin. Systematic departures from linearity will indicate preferred orientation in some manner.
circular_qqplot(
x,
axial = TRUE,
xlab = paste("i/(n+1)"),
ylab = NULL,
main = "Circular Quantile-Quantile Plot",
...
)
x |
numeric. Angles in degrees |
axial |
Logical. Whether data are uniaxial ( |
xlab , ylab , main |
plot labels. |
... |
graphical parameters |
plot
Borradaile, G. J. (2003). Statistics of earth science data: their distribution in time, space, and orientation (Vol. 351, p. 329). Berlin: Springer.
x_vm <- rvm(100, mean = 0, kappa = 2)
circular_qqplot(x_vm, pch = 20)
x_norm <- rnorm(100, mean = 0, sd = 25)
circular_qqplot(x_norm, pch = 20)
x_unif <- runif(100, 0, 360)
circular_qqplot(x_unif, pch = 20)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.