log2_to_ln | R Documentation |
log_a(x) = log_b(x) / log_b(a)
log2_to_ln(x)
x |
numeric values that were log2 transformed |
## Not run:
x = 1:4
cbind(input = x, as_log2 = log2(x), as_ln = log2_to_ln(log2(x)),
ln_then_undo = exp(log2_to_ln(log2(x))) )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.