spiral_initialize: Initialize the spiral

View source: R/initialize.R

spiral_initializeR Documentation

Initialize the spiral

Description

Initialize the spiral

Usage

spiral_initialize(xlim = c(0, 1), start = 360, end = 360*5,
    scale_by = c("angle", "curve_length"), period = NULL,
    clockwise = FALSE, flip = c("none", "vertical", "horizontal", "both"),
    reverse = FALSE, polar_lines = scale_by == "angle", polar_lines_by = 30,
    polar_lines_gp = gpar(col = "#808080", lty = 3),
    padding = unit(5, "mm"), newpage = TRUE, vp_param = list())

Arguments

xlim

Range on x-locations.

start

Start of the spiral, in degree. start and end should be positive and start should be smaller than end.

end

End of the spiral, in degree.

scale_by

How scales on x-axis are equally interpolated? The values can be one of "angle" and "curve_length". If the value is "angle", equal angle difference corresponds to equal difference of data. In this case, in outer loops, the scales are longer than in the inner loops, although the difference on the data are the same. If the value is "curve_length", equal curve length difference corresponds to the equal difference of the data.

period

Under "angle" mode, the number of loops can also be controlled by argument period which controls the length of data a spiral loop corresponds to. Note in this case, argument end is ignored and the value for end is internally recalculated.

clockwise

Whether the curve is in a closewise direction. If it is set to TRUE, argument flip and reverse are ignored.

flip

How to flip the spiral? By default, the spiral starts from the origin of the coordinate and grows reverseclockwisely. The argument controls the growing direction of the spiral.

reverse

By default, the most inside of the spiral corresponds to the lower boundary of x-location. Setting the value to FALSE can reverse the direction.

polar_lines

Whether draw the polar guiding lines.

polar_lines_by

Increment of the polar lines. Measured in degree. The value can also be a vector that defines where to add polar lines.

polar_lines_gp

Graphics parameters for the polar lines.

padding

Padding of the plotting region. The value can be a unit of length of one to two.

newpage

Whether to apply grid.newpage before making the plot?

vp_param

A list of parameters sent to viewport.

Value

No value is returned.

Examples

spiral_initialize(); spiral_track()
spiral_initialize(start = 180, end = 360+180); spiral_track()
spiral_initialize(flip = "vertical"); spiral_track()
spiral_initialize(flip = "horizontal"); spiral_track()
spiral_initialize(flip = "both"); spiral_track()
spiral_initialize(); spiral_track(); spiral_axis()
spiral_initialize(scale_by = "curve_length"); spiral_track(); spiral_axis()

# the following example shows the difference of `scale_by` more clearly:
make_plot = function(scale_by) {
    n = 100
    require(circlize)
    col = circlize::colorRamp2(c(0, 0.5, 1), c("blue", "white", "red"))
    spiral_initialize(xlim = c(0, n), scale_by = scale_by)
    spiral_track(height = 0.9)

    x = runif(n)
    spiral_rect(1:n - 1, 0, 1:n, 1, gp = gpar(fill = col(x), col = NA))
}
make_plot("angle")
make_plot("curve_length")

spiralize documentation built on Aug. 9, 2022, 5:09 p.m.