plaplace {Rsubbotools} | R Documentation |
Returns CDF from the Laplace Distribution
Description
The plaplace
returns the Cumulative Distribution Function at point x
for the Laplace distribution with parameters a
and m
.
Usage
plaplace(x, m = 0, a = 1)
Arguments
x |
(numeric) - value in the range |
m |
(numeric) - location parameter. |
a |
(numeric) - scale parameter. Must be in the range |
Details
The Laplace distribution is a distribution controlled by two parameters, with formula:
f(x;a,m) = \frac{1}{2a} e^{- \left| \frac{x-m}{a} \right| }
where a
is a scale parameter, and m
is a location parameter.
Value
a vector containing the values for the probabilities.
[Package Rsubbotools version 0.0.1 Index]