divMult_trans: Natural log transformation... providing breaks on the...

View source: R/ratioScales.R

divMult_transR Documentation

Natural log transformation... providing breaks on the "divMult" scale

Description

Natural log transformation... providing breaks on the "divMult" scale

Usage

divMult_trans(n = 7, base = exp(1), splits = 2, slashStar = TRUE, ...)

Arguments

n

Scalar, target number of breaks

base

a positive or complex number: the base with respect to which logarithms are computed. Defaults to e=exp(1).

splits

Integer, one of c(1,2,3). How many tick marks per "decade?"

slashStar

Logical, should division and multiplication symbols be "*" and "/" (default)? Prettier symbols \times, \div are available when slashStar == FALSE, but font libraries and text size may make distinguishing \div from + difficult.

...

Additional arguments passed to breaking function, labeller

See Also

Other transformations: nel_trans(), propDiff_trans()

Examples

dat<-data.frame(x = 1:10, y = exp(-2:7))
dat %>% ggplot2::ggplot(ggplot2::aes(x, y)) +
  ggplot2::geom_point() +
    ggplot2::scale_y_continuous(
       trans = "divMult"
       # default breaks aren't perfect; sometimes adding more helps
       #  trans = nel_trans(n = 9)
       , labels = label_divMult()
       , sec.axis = ggplot2::sec_axis(
           labels = function(x) {x}
           , trans = ~.
           , breaks = c(0.1, 0.5, 1, 5, 10, 50, 100, 500, 1000)
           , name = "original scale"
         )
       ) +
     ggplot2::labs(y = "nel (natural log) scale") +
     ggplot2::geom_hline(yintercept = 1, linewidth = 0.2)


mikeroswell/ratioScales documentation built on April 1, 2024, 10:38 p.m.