Applies logarithmic transformation to data to reduce skewness.
Examples
x <- zoo_simulate(
cols = 5,
data_range = c(0, 500)
)
y <- f_log(
x = x
)
if(interactive()){
zoo_plot(x)
zoo_plot(y)
}
Applies logarithmic transformation to data to reduce skewness.
x <- zoo_simulate(
cols = 5,
data_range = c(0, 500)
)
y <- f_log(
x = x
)
if(interactive()){
zoo_plot(x)
zoo_plot(y)
}