Description Usage Arguments Format See Also Examples
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.
Eis the Euler constant and is provided for convenience as
exp(1). Finally
lb()is a synonym of
log2()'.
1 2 3 4 5 6 7 8 9 10 11 |
x |
A numeric or complex vector. |
An object of class numeric
of length 1.
1 2 3 4 5 6 |
[1] 3
[1] 0.0000000 0.6931472 2.3978953 4.6151205
[1] 3
[1] 0.000000 0.301030 1.041393 2.004321
[1] 54.59815
[1] 0.000000 1.000000 1.584963
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.