Reverse Log transformation of value to pass to scale options
Source:R/graph_utils.R
reverselog_trans.Rd
Reverse Log transformation of value to pass to scale options
Usage
reverselog_trans(base = exp(1))
Examples
library(ggplot2)
ggplot(data = mtcars, mapping = aes(x = mpg, y = hp)) +
geom_point() +
scale_y_continuous(trans = reverselog_trans(10))