ln | R Documentation |
To avoid confusion using the default 'log()' function, which is natural logarithm, but spells out like base 10 logarithm in the mind of some beginneRs, we define 'ln()' and 'ln1p()' as wrappers for 'log()“ with default 'base = exp(1)' argument and for 'log1p()', respectively. For similar reasons, 'lg()' is a wrapper of 'log10()' (there is no possible confusion here, but 'lg' is another common notation for base 10 logarithm). 'lg1p()' is a convenient way to use the optimized code to calculate the logarithm of x + 1, but returning the result in base 10 logarithm. 'E' is the Euler constant and is provided for convenience as 'exp(1)'. Finally 'lb()' is a synonym of 'log2()'.
ln(x)
ln1p()
lg()
lg1p(x)
E
lb()
x |
A numeric or complex vector. |
An object of class numeric
of length 1.
[log()]
ln(exp(3)) # Same as log(exp(3))
ln1p(c(0, 1, 10, 100)) # Wrapper for log1p()
lg(10^3) # Same as log10(10^3)
lg1p(c(0, 1, 10, 100)) # log10(x + 1), but optimized for x << 1
E^4 # Similar to exp(4), but different calculation!
lb(1:3) # Wrapper for log2()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.