Skip to contents

Reverse Log transformation of value to pass to scale options

Usage

reverselog_trans(base = exp(1))

Arguments

base

Logarithmic base value.

Value

Transformation object per given base

Examples

library(ggplot2)
ggplot(data = mtcars, mapping = aes(x = mpg, y = hp)) +
  geom_point() +
  scale_y_continuous(trans = reverselog_trans(10))