power_trans function

Create a power transformation object

Create a power transformation object

This function can be used to create a proper trans object that encapsulates a power transformation (x^n).

power_trans(n)

Arguments

  • n: The degree of the power transformation

Returns

A trans object

Examples

# Power of 2 transformations trans <- power_trans(2) trans$transform(1:10) # Cubic root transformation trans <- power_trans(1 / 3) trans$transform(1:10) # Use it in a plot ggplot() + geom_line(aes(x = 1:10, y = 1:10)) + scale_x_continuous(trans = power_trans(2), expand = c(0, 1))
  • Maintainer: Thomas Lin Pedersen
  • License: MIT + file LICENSE
  • Last published: 2024-02-19