circtrans | R Documentation |
The function performs circular transformation of density or frequency, in an area-proportional or height-proportional manner.
circtrans(x, radius = 0, area.prop = TRUE, factor = 1)
x |
a numeric vector storing angular values between 0 and 2 pi, or an object that can be coerced to. |
radius |
the radius of the reference circle. |
area.prop |
logical; if |
factor |
a positive number representing the scale factor to scale the entire plot. |
A numerical vector of the transformed values
Danli Xu <dxu452@aucklanduni.ac.nz>, Yong Wang <yongwang@auckland.ac.nz>
Xu, D. and Wang, Y. (2020) Area-proportional Visualization for Circular Data. Journal of Computational and Graphical Statistics, 29, 351-357.
scalefactor
library(circular) x = as.vector(rvonmises(20, circular(pi), 10)) circtrans(x) # area-proportional transformation circtrans(x, area.prop = FALSE) # height-proportional transformation circtrans(x, factor = 2) # with a scaling factor
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.