exp {geostats} | R Documentation |
exponential transformation
Description
Map a logged kernel density estimate from [-\infty,+\infty
]
to [0,\infty
] by taking exponents.
Usage
## S3 method for class 'density'
exp(x)
Arguments
x |
an object of class |
Value
an object of class density
Examples
data(catchments,package='geostats')
lc <- log(catchments$CaMg)
ld <- density(lc)
d <- exp(ld)
plot(d)
[Package geostats version 1.6 Index]