distr (version 1.6)

Logis-class: Class "Logis"

Description

The Logistic distribution with location $= \mu$, by default = 0, and scale $= \sigma$, by default = 1, has distribution function $$p(x) = \frac{1}{1 + e^{-(x-\mu)/\sigma}}$$ and density $$d(x)= \frac{1}{\sigma}\frac{e^{(x-\mu)/\sigma}}{(1 + e^{(x-\mu)/\sigma})^2}$$ It is a long-tailed distribution with mean $\mu$ and variance $\pi^2/3 \sigma^2$. C.f. rlogis

Arguments

Objects from the Class

Objects can be created by calls of the form Logis(location, scale). This object is a logistic distribution.

Extends

Class "AbscontDistribution", directly. Class "UnivariateDistribution", by class "AbscontDistribution". Class "Distribution", by class "AbscontDistribution".

See Also

LogisParameter-class AbscontDistribution-class Reals-class rlogis

Examples

Run this code
L <- Logis(location = 1,scale = 1)
# L is a logistic distribution with  location = 1 and scale = 1.
r(L)(1) # one random number generated from this distribution, e.g. 5.87557
d(L)(1) # Density of this distribution is 0.25 for x = 1.
p(L)(1) # Probability that x < 1 is 0.5.
q(L)(.1) # Probability that x < -1.197225 is 0.1.
location(L) # location of this distribution is 1.
location(L) <- 2 # location of this distribution is now 2.

Run the code above in your browser using DataCamp Workspace