distr (version 1.6)

Cauchy-class: Class "Cauchy"

Description

The Cauchy distribution with location $l$, by default $=0$, and scale $s$ , by default $=1$,has density $$f(x) = \frac{1}{\pi s} \left( 1 + \left(\frac{x - l}{s}\right)^2 \right)^{-1}$$ for all $x$. C.f. rcauchy

Arguments

Objects from the Class

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

Extends

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

See Also

CauchyParameter-class AbscontDistribution-class Reals-class rcauchy

Examples

Run this code
C=Cauchy(location=1,scale=1) # C is a Cauchy distribution with location=1 and scale=1.
r(C)(1) # one random number generated from this distribution, e.g. 4.104603
d(C)(1) # Density of this distribution is 0.3183099 for x=1.
p(C)(1) # Probability that x<1 is 0.5.
q(C)(.1) # Probability that x<-2.077684 is 0.1.
location(C) # location of this distribution is 1.
location(C)=2 # location of this distribution is now 2.

Run the code above in your browser using DataCamp Workspace