Instead of 'log2', I want to use 'log2/(log2-1)'
sp <- ggplot(cars, aes(x = speed, y = dist)) + geom_point()
sp
sp + scale_x_continuous(trans='log2') +
scale_y_continuous(trans='log2')
When I try, I get:
object 'log2/(log2-1)_trans' of mode 'function' was not found
Thanks.