Title: | Object Oriented Implementation of Distributions |
---|---|
Description: | S4-classes and methods for distributions. |
Authors: | Florian Camphausen [ctb] (contributed as student in the initial phase --2005), Matthias Kohl [aut, cph], Peter Ruckdeschel [cre, cph], Thomas Stabla [ctb] (contributed as student in the initial phase --2005), R Core Team [ctb, cph] (for source file ks.c/ routines 'pKS2' and 'pKolmogorov2x') |
Maintainer: | Peter Ruckdeschel <[email protected]> |
License: | LGPL-3 |
Version: | 2.9.6 |
Built: | 2024-11-06 02:16:18 UTC |
Source: | https://github.com/r-forge/distr |
distr provides a conceptual treatment of distributions by means of S4
classes. A mother class Distribution
is introduced with slots for a
parameter and —most important— for the four constitutive methods r
,
d
, p
, and q
for simulation respectively for evaluation of
density / c.d.f.\ and quantile function of the corresponding distribution.
Most distributions of package stats (like normal, Poisson, etc.)
are implemented as subclasses of either AbscontDistribution
or
DiscreteDistribution
, which themselves are again subclasses of
Distribution
.
Up to arguments referring to a parameter of the distribution (like
mean
for the normal distribution), these function slots have the
same arguments as those of package stats, i.e.; for a distribution object
X
we may call these functions as
r(X)(n)
d(X)(x, log = FALSE)
p(X)(q, lower.tail = TRUE, log.p = FALSE)
q(X)(p, lower.tail = TRUE, log.p = FALSE)
For the arguments of these function slots see e.g. rnorm
.
Note that, as usual, slots d
, p
, and q
are vectorized
in their first argument, but are not on the subsequent ones.
In the environments of RStudio, see https://posit.co and
Jupyter IRKernel, see https://github.com/IRkernel/IRkernel,
calls to q
are caught away from standard R evaluation and are treated
in a non-standard way. This non-standard evaluation in particular throws
errors at calls to our accessor methods q
to slot q
of the
respective distribution object. To amend this, we provide function q.l
as alias to our accessors q
, so that our packages also become available
in these environments.
Arithmetics and unary mathematical transformations for distributions are
available: For Distribution
objects X
and Y
expressions
like 3*X+sin(exp(-Y/4+3))
have their natural interpretation as
corresponding image distributions.
Package: | distr |
Version: | 2.9.6 |
Date: | 2024-11-05 |
Depends: | R(>= 3.4), methods, graphics, startupmsg, sfsmisc |
Suggests: | distrEx, svUnit (>= 0.7-11), knitr, distrMod, ROptEst |
Imports: | stats, grDevices, utils, MASS |
LazyLoad: | yes |
License: | LGPL-3 |
URL: | https://distr.r-forge.r-project.org/ |
VCS/SVNRevision: | 1481 |
Distribution classes have a slot param
the class of which
is is specialized for the particualar distributions. The parameter
classes for the particular distributions have slots with names
according to the corresponding [rdpq]<name> functions of
package base.
From version 1.9 on, AbscontDistribution
and descendants have
a slot gaps
for gaps in the support.
DiscreteDistribution
and descendants have
an additional slot support
, which is again specialized
to be a lattice for class LatticeDistribution
.
For saved objects from earlier versions, we provide the methods
isOldVersion
, and conv2NewVersion
to check whether the object was generated by an older version of
this package and to convert such an object to the new format,
respectively. This applies to objects of subclasses of
AbscontDistribution
lacking a gap
-slot as well as to
to objects of subclasses of LatticeDistribution
lacking a
lattice
-slot.
To enhance accuracy, from version 1.9 on, we also provide
subclasses AffLinAbscontDistribution
, AffLinDiscreteDistribution
,
and AffLinLatticeDistribution
, as well as the class union
AffLinDistribution
, so that in particular functionals like E
from package distrEx can recur to exact formula more frequently:
These classes have additional slots a
, b
, and X0
to
reflect the fact, that a distribution object of theses classes has the
same distribution as a*X0+b
.
For all particular distributions, as well as for classes
AbscontDistribution
, DiscreteDistribution
,
LatticeDistribution
, UnivarDistrList
and DistrList
generating functions are provided, e.g. X <- Norm(mean = 3, sd = 2)
.
The same goes for the space classes.
All slots should be inspected / modified by means of corresponding
accessor- /replacement functions; e.g. mean(X) <- 3
Again to enhance accuracy, from version 2.0 on, we also provide
subclasses UnivarMixingDistribution
to support mixing distributions,
UnivarLebDecDistribution
, to support Lebesgue decomposed distributions
(with a discrete and an a.c. part) as well as AffLinUnivarLebDecDistribution
,
for corresponding affine linear transformations.
Class UnivarLebDecDistribution
is closed under arithmetical operations
+ /
, *
, ^
for pairs of independent variables
+ +
, -
for pairs of independent variables
+ affine linear transformations
+ truncation, huberization, min/max
which are all now available analytically.
(see Parameter classes).
[*]: there is a generating function with the same name ########################## Distribution classes ########################## slots: [<name>(<class>)] img(rSpace), param(OptionalParameter), r(function), d(OptionalFunction), p(OptionalFunction), q(OptionalFunction), .withSim(logical), .withArith(logical), .logExact(logical), .lowerExact(logical), Symmetry(DistributionSymmetry) "Distribution" |>"UnivariateDistribution" |>|>"UnivarMixingDistribution" [*] |>|>|>"UnivarLebDecDistribution" [*] |>|>|>|>"AffLinUnivarLebDecDistribution" |>|>|>"CompoundDistribution" [*] |>|>"AbscontDistribution" [*] |>|>|>"AffLinAbscontDistribution" |>|>|>"Arcsine" [*] |>|>|>"Beta" [*] |>|>|>"Cauchy" [*] |>|>|>"ExpOrGammaOrChisq" (VIRTUAL) |>|>|>|>"Exp" [*] |>|>|>|>"Gammad" [*] |>|>|>|>"Chisq" [*] |>|>|>"Fd" [*] |>|>|>"Lnorm" [*] |>|>|>"Logis" [*] |>|>|>"Norm" [*] |>|>|>"Td" [*] |>|>|>"Unif" [*] |>|>|>"Weibull" [*] |>|>|"DiscreteDistribution" [*] |>|>|>"AffLinDiscreteDistribution" |>|>|>"LatticeDistribution" [*] |>|>|>|>"AffLinLatticeDistribution" |>|>|>|>"Binom" [*] |>|>|>|>"Dirac" [*] |>|>|>|>"Hyper" [*] |>|>|>|>"NBinom" [*] |>|>|>|>|>"Geom" [*] |>|>|>|>"Pois" [*] "AffLinDistribution" = union ( "AffLinAbscontDistribution", "AffLinDiscreteDistribution", "AffLinUnivarLebDecDistribution" ) "DistrList" |>"UnivarDistrList" [*] "AcDcLc" = union ( "AbscontDistribution", "DiscreteDistribution", "UnivarLebDecDistribution" ) ########################## Parameter classes ########################## "OptionalParameter" |>"Parameter" |>|>"BetaParameter" |>|>"BinomParameter" |>|>"CauchyParameter" |>|>"ChisqParameter" |>|>"DiracParameter" |>|>"ExpParameter" |>|>"FParameter" |>|>"GammaParameter" |>|>"GeomParameter" |>|>"HyperParameter" |>|>"LnormParameter" |>|>"LogisParameter" |>|>"NbinomParameter" |>|>"NormParameter" |>|>"UniNormParameter" |>|>|>"PoisParameter" |>|>"TParameter" |>|>"UnifParameter" |>|>"WeibullParameter" ########################## Space classes ########################## "rSpace" |>"EuclideanSpace" |>|>"Reals" |>"Lattice" |>"Naturals" ########################## Symmetry classes ########################## slots: type(character), SymmCenter(ANY) "Symmetry" |>"NoSymmetry" [*] |>"EllipticalSymmetry" [*] |>|>"SphericalSymmetry" [*] |>"DistributionSymmetry" |>"FunctionSymmetry" |>|>"NonSymmetric" [*] |>|>"EvenSymmetric" [*] |>|>"OddSymmetric" [*] list thereof "DistrSymmList" [*] "FunSymmList" [*] ########################## Matrix classes ########################## slots: none "PosSemDefSymmMatrix" [*] is subclass of class "matrix" of package "base". |>"PosDefSymmMatrix" [*] ########################## Class unions ########################## "OptionalNumeric" = union("numeric", "NULL") "OptionalMatrix" = union("matrix","NULL")
The group Math
of unary (see Math) as well as
convolution are made available for distributions, see operators-methods
;in particular for convolution powers, we have method convpow.
Besides, there are plot
and print
-methods for distributions.
For the space classes, we have liesIn
, for the
DicreteDistribution
class, we have liesInSupport
, as well
as a generating function.
The "history" of distributions
obtained by chaining operations may be shortened using simplifyr
.
RtoDPQ Default procedure to fill slots d,p,q given r for a.c. distributions RtoDPQ.d Default procedure to fill slots d,p,q given r for discrete distributions RtoDPQ.LC Default procedure to fill slots d,p,q given r for Lebesgue decomposed distributions decomposePM decomposes a distribution into positive and negative part and, if discrete, into part '0' simplifyD tries to reduce/simplify mixing distribution using that certain weights are 0 flat.LCD makes a single UnivarLebDecDistribution out of a list of UnivarLebDecDistribution with corresp. weights flat.mix makes a single UnivarLebDecDistribution out of a list of a UnivarMixingDistribution distroptions Functions to change the global variables of the package 'distr' standardMethods Utility to automatically generate accessor and replacement functions
Please note that there are extension packages of this packages available on CRAN,
a documentation package providing joint documentation
for all packages of the distrXXX family of packages in the form of vignette
'distr'; try require(distrDoc); vignette("distr")
.
provides functionals (like E
, sd
, mad
)
operating on distributions, as well as distances between distributions and basic
support for multivariate and conditional distributions.
for the standardized treatment of simulations, also under contaminations.
with classes and methods for evaluations of statistical procedures on simulations generated by distrSim.
embodies illustrations for basic stats courses using our distribution classes.
provides classes for parametric models and hence covers, in an object orientated way, estimation in statistical models.
provides classes for elliptically symmetric distributions.
Note: The first two numbers of package versions do not necessarily reflect package-individual development, but rather are chosen for the distrXXX family as a whole in order to ease updating "depends" information.
We thank Martin Maechler, Josef Leydold, John Chambers, Duncan Murdoch, Gregory Warnes, Paul Gilbert, Kurt Hornik, Uwe Ligges, Torsten Hothorn, and Seth Falcon for their help in preparing this package.
You may suppress the start-up banner/message completely by setting
options("StartupBanner"="off")
somewhere before loading this
package by library
or require
in your R-code / R-session.
If option "StartupBanner"
is not defined (default) or setting
options("StartupBanner"=NULL)
or
options("StartupBanner"="complete")
the complete start-up banner is
displayed.
For any other value of option "StartupBanner"
(i.e., not in c(NULL,"off","complete")
)
only the version information is displayed.
The same can be achieved by wrapping the library
or require
call into either suppressStartupMessages()
or
onlytypeStartupMessages(.,atypes="version")
.
As for general packageStartupMessage
's, you may also suppress all
the start-up banner by wrapping the library
or require
call into suppressPackageStartupMessages()
from
startupmsg-version 0.5 on.
Demos are available — see demo(package="distr")
Arithmetics on distribution objects are understood as operations on
corresponding (independent) r.v.'s and not on distribution functions
or densities.
See also distrARITH()
.
Some functions of package stats have intentionally been masked,
but completely retain their functionality — see distrMASK()
.
Accuracy of these arithmetics is controlled by global options which may
be inspected / set by distroptions()
and getdistrOption()
,
confer distroptions .
Peter Ruckdeschel [email protected],
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Matthias Kohl [email protected]
Maintainer: Peter Ruckdeschel [email protected]
P. Ruckdeschel, M. Kohl, T. Stabla, F. Camphausen (2006):
S4 Classes for Distributions, R News, 6(2), 2-6.
https://CRAN.R-project.org/doc/Rnews/Rnews_2006-2.pdf
P. Ruckdeschel and M. Kohl (2014):
General purpose convolution algorithm for distributions
in S4-Classes by means of FFT. J. Statist. Softw.
59(4): 1-25.
a vignette for packages distr, distrSim, distrTEst, and
distrEx is included into the mere documentation package distrDoc
and may be called by
require("distrDoc");vignette("distr")
a homepage to this package is available under
https://distr.r-forge.r-project.org/
X <- Unif(2,3) Y <- Pois(lambda = 3) Z <- X+Y # generates Law of corresponding independent variables p(Z)(0.2) r(Z)(1000) plot(Z+sin(Norm()))
X <- Unif(2,3) Y <- Pois(lambda = 3) Z <- X+Y # generates Law of corresponding independent variables p(Z)(0.2) r(Z)(1000) plot(Z+sin(Norm()))
Generates an object of class "AbscontDistribution"
AbscontDistribution(r = NULL, d = NULL, p = NULL, q = NULL, gaps = NULL, param = NULL, img = new("Reals"), .withSim = FALSE, .withArith = FALSE, .lowerExact = FALSE, .logExact = FALSE, withgaps = getdistrOption("withgaps"), low1 = NULL, up1 = NULL, low = -Inf, up =Inf, withStand = FALSE, ngrid = getdistrOption("DefaultNrGridPoints"), ep = getdistrOption("TruncQuantile"), e = getdistrOption("RtoDPQ.e"), Symmetry = NoSymmetry())
AbscontDistribution(r = NULL, d = NULL, p = NULL, q = NULL, gaps = NULL, param = NULL, img = new("Reals"), .withSim = FALSE, .withArith = FALSE, .lowerExact = FALSE, .logExact = FALSE, withgaps = getdistrOption("withgaps"), low1 = NULL, up1 = NULL, low = -Inf, up =Inf, withStand = FALSE, ngrid = getdistrOption("DefaultNrGridPoints"), ep = getdistrOption("TruncQuantile"), e = getdistrOption("RtoDPQ.e"), Symmetry = NoSymmetry())
r |
slot |
d |
slot |
p |
slot |
q |
slot |
gaps |
slot gaps (of class |
param |
parameter (of class |
img |
image range of the distribution (of class |
low1 |
lower bound (to be the lower TruncQuantile-quantile of the distribution) |
up1 |
upper bound (to be the upper TruncQuantile-quantile of the distribution) |
low |
lower bound (to be the 100-percent-quantile of the distribution) |
up |
upper bound (to be the 100-percent-quantile of the distribution) |
withStand |
logical: shall we standardize argument function |
ngrid |
number of gridpoints |
ep |
tolerance epsilon |
e |
exponent to base 10 to be used for simulations |
withgaps |
logical; shall gaps be reconstructed empirically? |
.withArith |
normally not set by the user, but if determining the entries |
.withSim |
normally not set by the user, but if determining the entries |
.lowerExact |
normally not set by the user: whether the |
.logExact |
normally not set by the user: whether in determining slots |
Symmetry |
you may help R in calculations if you tell it whether
the distribution is non-symmetric (default) or symmetric with respect
to a center; in this case use |
Typical usages are
AbscontDistribution(r) AbscontDistribution(r = NULL, d) AbscontDistribution(r = NULL, d = NULL, p) AbscontDistribution(r = NULL, d = NULL, p = NULL, d) AbscontDistribution(r, d, p, q)
Minimally, only one of the slots r
, d
, p
or q
needs to be given as argument.
The other non-given slots are then reconstructed according to the following scheme:
r | d | p | q | proceding |
- | - | - | - | excluded |
- | + | - | - | p by .D2P , q by .P2Q , r by q(runif(n))
|
- | - | + | - | d by .P2D , q by .P2Q , r by q(runif(n))
|
- | + | + | - | q by .P2Q , r by q(runif(n))
|
- | - | - | + | p by .Q2P , d by .P2D , r by q(runif(n))
|
- | + | - | + | p by .Q2P , r by q(runif(n))
|
- | - | + | + | d by .P2D , r by q(runif(n))
|
- | + | + | + | r by q(runif(n))
|
+ | - | - | - | call to RtoDPQ
|
+ | + | - | - | p by .D2P , q by .P2Q
|
+ | - | + | - | d by .P2D , q by .P2Q
|
+ | + | + | - | q by .P2Q
|
+ | - | - | + | p by .Q2P , d by .P2D
|
+ | + | - | + | p by .Q2P
|
+ | - | + | + | d by .P2D
|
+ | + | + | + | nothing |
For this purpose, one may alternatively give arguments low1
and up1
(NULL
each by default,
and determined through slot q
, resp. p
, resp. d
, resp. r
in this order
according to availability),
for the (finite) range of values in the support of this distribution,
as well as the possibly infinite theoretical range given by
arguments low
and up
with default values -Inf
, Inf
, respectively.
Of course all other slots may be specified as arguments.
Object of class "AbscontDistribution"
Peter Ruckdeschel [email protected]
AbscontDistribution-class
,
DiscreteDistribution-class
,
RtoDPQ
plot(Norm()) plot(AbscontDistribution(r = rnorm)) plot(AbscontDistribution(d = dnorm)) plot(AbscontDistribution(p = pnorm)) plot(AbscontDistribution(q = qnorm)) plot(Ac <- AbscontDistribution(d = function(x, log = FALSE){ d <- exp(-abs(x^3)) ## unstandardized!! if(log) d <- log(d) return(d)}, withStand = TRUE))
plot(Norm()) plot(AbscontDistribution(r = rnorm)) plot(AbscontDistribution(d = dnorm)) plot(AbscontDistribution(p = pnorm)) plot(AbscontDistribution(q = qnorm)) plot(Ac <- AbscontDistribution(d = function(x, log = FALSE){ d <- exp(-abs(x^3)) ## unstandardized!! if(log) d <- log(d) return(d)}, withStand = TRUE))
The AbscontDistribution
-class is the mother-class of the classes Beta
, Cauchy
,
Chisq
, Exp
, F
, Gammad
, Lnorm
, Logis
, Norm
, T
, Unif
and
Weibull
. Further absolutely continuous distributions can be defined either by declaration of
own random number generator, density, cumulative distribution and quantile functions, or as result of a
convolution of two absolutely continuous distributions or by application of a mathematical operator to an absolutely
continuous distribution.
Objects can be created by calls of the form new("AbscontDistribution", r, d, p, q)
.
More comfortably, you may use the generating function AbscontDistribution
.
The result of these calls is an absolutely continuous distribution.
img
Object of class "Reals"
: the space of the image of this distribution which has dimension 1
and the name "Real Space"
param
Object of class "Parameter"
: the parameter of this distribution, having only
the slot name "Parameter of an absolutely continuous distribution"
r
Object of class "function"
: generates random numbers
d
Object of class "function"
: density function
p
Object of class "function"
: cumulative distribution function
q
Object of class "function"
: quantile function
gaps
[from version 1.9 on] Object of class "OptionalMatrix"
,
i.e.; an object which may either be NULL
ora matrix
.
This slot, if non-NULL
, contains left and right
endpoints of intervals where the density of the object is 0. This slot
may be inspected by the accessor gaps()
and modified by a corresponding
replacement method. It may also be filled automatically by
setgaps()
. For saved objects from earlier versions, we provide functions
isOldVersion
and conv2NewVersion
.
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "UnivariateDistribution"
, directly.
Class "Distribution"
, by class "UnivariateDistribution"
.
signature(.Object = "AbscontDistribution")
: initialize method
signature(x = "AbscontDistribution")
: application of a mathematical function, e.g. sin
or
exp
(does not work with log
, sign
!), to this absolutely continouos distribution
abs
: signature(x = "AbscontDistribution")
: exact image distribution of abs(x)
.
exp
: signature(x = "AbscontDistribution")
: exact image distribution of exp(x)
.
sign
: signature(x = "AbscontDistribution")
: exact image distribution of sign(x)
.
sqrt
: signature(x = "AbscontDistribution")
: exact image distribution of sqrt(x)
.
log
: signature(x = "AbscontDistribution")
: (with optional further argument base
, defaulting to exp(1)
) exact image distribution of log(x)
.
log10
: signature(x = "AbscontDistribution")
: exact image distribution of log10(x)
.
gamma
: signature(x = "AbscontDistribution")
: exact image distribution of gamma(x)
.
lgamma
: signature(x = "AbscontDistribution")
: exact image distribution of lgamma(x)
.
digamma
: signature(x = "AbscontDistribution")
: exact image distribution of digamma(x)
.
sqrt
: signature(x = "AbscontDistribution")
: exact image distribution of sqrt(x)
.
signature(e1 = "AbscontDistribution")
: application of ‘-’ to this absolutely continuous distribution.
signature(e1 = "AbscontDistribution", e2 = "numeric")
: multiplication of this absolutely continuous distribution by an object of class "numeric"
signature(e1 = "AbscontDistribution", e2 = "numeric")
: division of this absolutely continuous distribution by an object of class "numeric"
signature(e1 = "AbscontDistribution", e2 = "numeric")
: addition of this absolutely continuous distribution to an object of class "numeric"
.
signature(e1 = "AbscontDistribution", e2 = "numeric")
: subtraction of an object of class "numeric"
from this absolutely continuous distribution.
signature(e1 = "numeric", e2 = "AbscontDistribution")
: multiplication of this absolutely continuous distribution by an object of class "numeric"
.
signature(e1 = "numeric", e2 = "AbscontDistribution")
: addition of this absolutely continuous distribution to an object of class "numeric"
.
signature(e1 = "numeric", e2 = "AbscontDistribution")
: subtraction of this absolutely continuous distribution from an object of class "numeric"
.
signature(e1 = "AbscontDistribution", e2 = "AbscontDistribution")
: Convolution of two absolutely continuous distributions. The slots p, d and q are approximated by grids.
signature(e1 = "AbscontDistribution", e2 = "AbscontDistribution")
: Convolution of two absolutely continuous distributions. The slots p, d and q are approximated by grids.
signature(object = "AbscontDistribution")
: plots density, cumulative distribution and quantile function.
To enhance accuracy of several functionals on distributions,
mainly from package distrEx, from version 1.9 of this package on,
there is an internally used (but exported) subclass
"AffLinAbscontDistribution"
which has extra slots
a
, b
(both of class "numeric"
), and X0
(of class "AbscontDistribution"
), to capture the fact
that the object has the same distribution as a * X0 + b
. This is
the class of the return value of methods
signature(e1 = "AbscontDistribution")
signature(e1 = "AbscontDistribution", e2 = "numeric")
signature(e1 = "AbscontDistribution", e2 = "numeric")
signature(e1 = "AbscontDistribution", e2 = "numeric")
signature(e1 = "AbscontDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "AbscontDistribution")
signature(e1 = "numeric", e2 = "AbscontDistribution")
signature(e1 = "numeric", e2 = "AbscontDistribution")
signature(e1 = "AffLinAbscontDistribution")
signature(e1 = "AffLinAbscontDistribution", e2 = "numeric")
signature(e1 = "AffLinAbscontDistribution", e2 = "numeric")
signature(e1 = "AffLinAbscontDistribution", e2 = "numeric")
signature(e1 = "AffLinAbscontDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "AffLinAbscontDistribution")
signature(e1 = "numeric", e2 = "AffLinAbscontDistribution")
signature(e1 = "numeric", e2 = "AffLinAbscontDistribution")
There also is a class union of "AffLinAbscontDistribution"
,
"AffLinDiscreteDistribution"
, "AffLinUnivarLebDecDistribution"
and called "AffLinDistribution"
which is used for functionals.
As many operations should be valid no matter whether the operands
are of class "AbscontDistribution"
,
"DiscreteDistribution"
, or "UnivarLebDecDistribution"
,
there is a class union of these classes called "AcDcLcDistribution"
;
in partiucalar methods for "*"
, "/"
,
"^"
(see operators-methods) and methods
Minimum
, Maximum
, Truncate
, and
Huberize
, and convpow
are defined for this
class union.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
AbscontDistribution
Parameter-class
UnivariateDistribution-class
Beta-class
Cauchy-class
Chisq-class
Exp-class
Fd-class
Gammad-class
Lnorm-class
Logis-class
Norm-class
Td-class
Unif-class
Weibull-class
DiscreteDistribution-class
Reals-class
RtoDPQ
N <- Norm() # N is a normal distribution with mean=0 and sd=1. E <- Exp() # E is an exponential distribution with rate=1. A1 <- E+1 # a new absolutely continuous distributions with exact slots d, p, q A2 <- A1*3 # a new absolutely continuous distributions with exact slots d, p, q A3 <- N*0.9 + E*0.1 # a new absolutely continuous distribution with approximated slots d, p, q r(A3)(1) # one random number generated from this distribution, e.g. -0.7150937 d(A3)(0) # The (approximated) density for x=0 is 0.43799. p(A3)(0) # The (approximated) probability that x <= 0 is 0.45620. q(A3)(.1) # The (approximated) 10 percent quantile is -1.06015. ## in RStudio or Jupytier IRKernel, use q.l(.)(.) instead of q(.)(.)
N <- Norm() # N is a normal distribution with mean=0 and sd=1. E <- Exp() # E is an exponential distribution with rate=1. A1 <- E+1 # a new absolutely continuous distributions with exact slots d, p, q A2 <- A1*3 # a new absolutely continuous distributions with exact slots d, p, q A3 <- N*0.9 + E*0.1 # a new absolutely continuous distribution with approximated slots d, p, q r(A3)(1) # one random number generated from this distribution, e.g. -0.7150937 d(A3)(0) # The (approximated) density for x=0 is 0.43799. p(A3)(0) # The (approximated) probability that x <= 0 is 0.45620. q(A3)(.1) # The (approximated) 10 percent quantile is -1.06015. ## in RStudio or Jupytier IRKernel, use q.l(.)(.) instead of q(.)(.)
The Arcsine distribution has density
for .
Objects can be created by calls of the form Arcsine()
.
This object is an Arcsine distribution.
img
Object of class "Reals"
:
The space of the image of this distribution has got dimension 1 and the name "Real Space".
r
Object of class "function"
:
generates random numbers (calls function rArcsine)
d
Object of class "function"
:
density function (calls function dArcsine)
p
Object of class "function"
:
cumulative function (calls function pArcsine)
q
Object of class "function"
:
inverse of the cumulative function (calls function qArcsine)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Arcsine")
:
initialize method
Peter Ruckdeschel [email protected]
AbscontDistribution-class
Reals-class
A <- Arcsine() # A is a Arcsine distribution with shape1 = 1 and shape2 = 1. r(A)(3) # three random number generated from this distribution, e.g. 0.6979795 d(A)(c(-2,-1,-0.2,0,0.2,1,2)) # Density at x=c(-1,-0.2,0,0.2,1). p(A)(c(-2,-1,-0.2,0,0.2,1,2)) # cdf at q=c(-1,-0.2,0,0.2,1). q(A)(c(0,0.2,1,2)) # quantile function at at x=c(0,0.2,1). ## in RStudio or Jupyter IRKernel, use q.l(A)(c(0,0.2,1,2)) instead
A <- Arcsine() # A is a Arcsine distribution with shape1 = 1 and shape2 = 1. r(A)(3) # three random number generated from this distribution, e.g. 0.6979795 d(A)(c(-2,-1,-0.2,0,0.2,1,2)) # Density at x=c(-1,-0.2,0,0.2,1). p(A)(c(-2,-1,-0.2,0,0.2,1,2)) # cdf at q=c(-1,-0.2,0,0.2,1). q(A)(c(0,0.2,1,2)) # quantile function at at x=c(0,0.2,1). ## in RStudio or Jupyter IRKernel, use q.l(A)(c(0,0.2,1,2)) instead
The Beta distribution with parameters shape1
and
shape2
has density
for ,
and
where the boundary values at
or
are defined as
by continuity (as limits).
For R Version <2.3.0
ad hoc methods are provided for slots q
, r
if ncp!=0
;
for R Version >=2.3.0
the methods from package stats are used.
Objects can be created by calls of the form Beta(shape1, shape2)
.
This object is a beta distribution.
img
Object of class "Reals"
:
The space of the image of this distribution has got dimension 1 and the name "Real Space".
param
Object of class "BetaParameter"
:
the parameter of this distribution (shape1 and shape2), declared at its instantiation
r
Object of class "function"
:
generates random numbers (calls function rbeta)
d
Object of class "function"
:
density function (calls function dbeta)
p
Object of class "function"
:
cumulative function (calls function pbeta)
q
Object of class "function"
:
inverse of the cumulative function (calls function qbeta)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Beta")
:
initialize method
signature(object = "Beta")
:
returns the slot shape1 of the parameter of the distribution
signature(object = "Beta")
:
modifies the slot shape1 of the parameter of the distribution
signature(object = "Beta")
:
returns the slot shape2 of the parameter of the distribution
signature(object = "Beta")
:
modifies the slot shape2 of the parameter of the distribution
-
signature(e1 = "numeric", e2 = "Beta")
if ncp(e2)==0
and e1 == 1
,
an exact (central) Beta(shape1 = shape2(e2), shape2 = shape1(e2))
is returned, else
the default method is used; exact
The non-central Beta distribution is defined (Johnson et al, 1995,
pp. 502) as the distribution of where
and
.
C.f.
rbeta
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
BetaParameter-class
AbscontDistribution-class
Reals-class
rbeta
B <- Beta(shape1 = 1, shape2 = 1) # B is a beta distribution with shape1 = 1 and shape2 = 1. r(B)(1) # one random number generated from this distribution, e.g. 0.6979795 d(B)(1) # Density of this distribution is 1 for x=1. p(B)(1) # Probability that x < 1 is 1. q(B)(.1) # Probability that x < 0.1 is 0.1. shape1(B) # shape1 of this distribution is 1. shape1(B) <- 2 # shape1 of this distribution is now 2. Bn <- Beta(shape1 = 1, shape2 = 3, ncp = 5) # Bn is a beta distribution with shape1 = 1 and shape2 = 3 and ncp = 5. B0 <- Bn; ncp(B0) <- 0; # B0 is just the same beta distribution as Bn but with ncp = 0 q(B0)(0.1) ## q(Bn)(0.1) ## => from R 2.3.0 on ncp no longer ignored... ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.)
B <- Beta(shape1 = 1, shape2 = 1) # B is a beta distribution with shape1 = 1 and shape2 = 1. r(B)(1) # one random number generated from this distribution, e.g. 0.6979795 d(B)(1) # Density of this distribution is 1 for x=1. p(B)(1) # Probability that x < 1 is 1. q(B)(.1) # Probability that x < 0.1 is 0.1. shape1(B) # shape1 of this distribution is 1. shape1(B) <- 2 # shape1 of this distribution is now 2. Bn <- Beta(shape1 = 1, shape2 = 3, ncp = 5) # Bn is a beta distribution with shape1 = 1 and shape2 = 3 and ncp = 5. B0 <- Bn; ncp(B0) <- 0; # B0 is just the same beta distribution as Bn but with ncp = 0 q(B0)(0.1) ## q(Bn)(0.1) ## => from R 2.3.0 on ncp no longer ignored... ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.)
The parameter of a beta distribution, used by Beta-class
Objects can be created by calls of the form new("BetaParameter", shape1, shape2, ncp)
.
Usually an object of this class is not needed on its own, it is
generated automatically when an object of the class Beta
is instantiated.
shape1
Object of class "numeric"
: the shape1 of a beta distribution
shape2
Object of class "numeric"
: the shape2 of a beta distribution
ncp
Object of class "numeric"
: the noncentrality parameter of a beta distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "BetaParameter")
:
initialize method
signature(object = "BetaParameter")
:
returns the slot shape1 of the parameter of the distribution
signature(object = "BetaParameter")
:
modifies the slot shape1 of the parameter of the distribution
signature(object = "BetaParameter")
:
returns the slot shape2 of the parameter of the distribution
signature(object = "BetaParameter")
:
modifies the slot shape2 of the parameter of the distribution
signature(object = "BetaParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "BetaParameter")
: modifies the slot ncp
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("BetaParameter", shape1 = 1, shape2 = 1, ncp = 0) shape2(W) # shape2 of this distribution is 1. shape2(W) <- 2 # shape2 of this distribution is now 2.
W <- new("BetaParameter", shape1 = 1, shape2 = 1, ncp = 0) shape2(W) # shape2 of this distribution is 1. shape2(W) <- 2 # shape2 of this distribution is now 2.
The binomial distribution with size
, by default
, and
prob
, by default
, has density
for .
C.f.rbinom
Objects can be created by calls of the form Binom(prob, size)
.
This object is a binomial distribution.
img
Object of class "Naturals"
: The space of the
image of this distribution has got dimension 1 and the
name "Natural Space".
param
Object of class "BinomParameter"
: the parameter
of this distribution (prob
, size
), declared at its
instantiation
r
Object of class "function"
: generates random
numbers (calls function rbinom
)
d
Object of class "function"
: density function (calls
function dbinom
)
p
Object of class "function"
: cumulative function
(calls function pbinom
)
q
Object of class "function"
: inverse of the
cumulative function (calls function qbinom
).
The quantile is defined as the smallest value x such that F(x) >= p, where
F is the cumulative function.
support
Object of class "numeric"
: a (sorted)
vector containing the support of the discrete density function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "DiscreteDistribution"
, directly.
Class "UnivariateDistribution"
, by class "DiscreteDistribution"
.
Class "Distribution"
, by class "DiscreteDistribution"
.
signature(e1 = "Binom", e2 = "Binom")
: For two binomial
distributions with equal probabilities the exact convolution
formula is implemented thereby improving the general numerical
accuracy.
signature(.Object = "Binom")
: initialize method
signature(object = "Binom")
: returns the slot prob
of the parameter of the distribution
signature(object = "Binom")
: modifies the slot
prob
of the parameter of the distribution
signature(object = "Binom")
: returns the slot size
of the parameter of the distribution
signature(object = "Binom")
: modifies the slot
size
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
BinomParameter-class
DiscreteDistribution-class
Naturals-class
rbinom
B <- Binom(prob=0.5,size=1) # B is a binomial distribution with prob=0.5 and size=1. r(B)(1) # # one random number generated from this distribution, e.g. 1 d(B)(1) # Density of this distribution is 0.5 for x=1. p(B)(0.4) # Probability that x<0.4 is 0.5. q(B)(.1) # x=0 is the smallest value x such that p(B)(x)>=0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) size(B) # size of this distribution is 1. size(B) <- 2 # size of this distribution is now 2. C <- Binom(prob = 0.5, size = 1) # C is a binomial distribution with prob=0.5 and size=1. D <- Binom(prob = 0.6, size = 1) # D is a binomial distribution with prob=0.6 and size=1. E <- B + C # E is a binomial distribution with prob=0.5 and size=3. F <- B + D # F is an object of class LatticeDistribution. G <- B + as(D,"DiscreteDistribution") ## DiscreteDistribution
B <- Binom(prob=0.5,size=1) # B is a binomial distribution with prob=0.5 and size=1. r(B)(1) # # one random number generated from this distribution, e.g. 1 d(B)(1) # Density of this distribution is 0.5 for x=1. p(B)(0.4) # Probability that x<0.4 is 0.5. q(B)(.1) # x=0 is the smallest value x such that p(B)(x)>=0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) size(B) # size of this distribution is 1. size(B) <- 2 # size of this distribution is now 2. C <- Binom(prob = 0.5, size = 1) # C is a binomial distribution with prob=0.5 and size=1. D <- Binom(prob = 0.6, size = 1) # D is a binomial distribution with prob=0.6 and size=1. E <- B + C # E is a binomial distribution with prob=0.5 and size=3. F <- B + D # F is an object of class LatticeDistribution. G <- B + as(D,"DiscreteDistribution") ## DiscreteDistribution
The parameter of a binomial distribution, used by Binom-class
Objects can be created by calls of the form
new("BinomParameter", prob, size)
.
Usually an object of this class is not needed on its own, it is generated
automatically when an object of the class Binom
is instantiated.
prob
Object of class "numeric"
:
the probability of a binomial distribution
size
Object of class "numeric"
:
the size of a binomial distribution
name
Object of class "character"
:
a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "BinomParameter")
:
initialize method
signature(object = "BinomParameter")
: returns the slot
prob
of the parameter of the distribution
signature(object = "BinomParameter")
: modifies the slot
prob
of the parameter of the distribution
signature(object = "BinomParameter")
: returns the slot
size
of the parameter of the distribution
signature(object = "BinomParameter")
: modifies the slot
size
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("BinomParameter",prob=0.5,size=1) size(W) # size of this distribution is 1. size(W) <- 2 # size of this distribution is now 2.
W <- new("BinomParameter",prob=0.5,size=1) size(W) # size of this distribution is 1. size(W) <- 2 # size of this distribution is now 2.
The Cauchy distribution with location , by default
, and scale
, by default
,has
density
for all .
C.f.
rcauchy
Objects can be created by calls of the form Cauchy(location, scale)
.
This object is a Cauchy distribution.
img
Object of class "Reals"
: The domain of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "CauchyParameter"
: the parameter of this distribution (location and scale),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rcauchy
)
d
Object of class "function"
: density function (calls function dcauchy
)
p
Object of class "function"
: cumulative function (calls function pcauchy
)
q
Object of class "function"
: inverse of the cumulative function (calls function qcauchy
)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
By means of setIs
, R “knows” that a distribution object obj
of class "Cauchy"
with location 0 and scale 1 also is
a T distribution with parameters df = 1, ncp = 0
.
signature(.Object = "Cauchy")
: initialize method
signature(object = "Cauchy")
: returns the slot location
of the parameter of the distribution
signature(object = "Cauchy")
: modifies the slot location
of the parameter of the distribution
signature(object = "Cauchy")
: returns the slot scale
of the parameter of the distribution
signature(object = "Cauchy")
: modifies the slot scale
of the parameter of the distribution
signature(e1 = "Cauchy", e2 = "Cauchy")
: For the Cauchy distribution the exact convolution formula is
implemented thereby improving the general numerical approximation.
signature(e1 = "Cauchy", e2 = "numeric")
signature(e1 = "Cauchy", e2 = "numeric")
:
For the Cauchy location scale family we use its closedness under affine linear transformations.
further arithmetic methods see operators-methods
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
CauchyParameter-class
AbscontDistribution-class
Reals-class
rcauchy
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. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) location(C) # location of this distribution is 1. location(C) <- 2 # location of this distribution is now 2. is(C,"Td") # no C0 <- Cauchy() # standard, i.e. location = 0, scale = 1 is(C0,"Td") # yes as(C0,"Td")
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. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) location(C) # location of this distribution is 1. location(C) <- 2 # location of this distribution is now 2. is(C,"Td") # no C0 <- Cauchy() # standard, i.e. location = 0, scale = 1 is(C0,"Td") # yes as(C0,"Td")
The parameter of a Cauchy distribution, used by Cauchy-class
Objects can be created by calls of the form new("CauchyParameter", location, scale)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Cauchy is instantiated.
location
:Object of class "numeric"
: the location of a Cauchy distribution
scale
Object of class "numeric"
: the scale of a Cauchy distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "CauchyParameter")
: initialize method
signature(object = "CauchyParameter")
: returns the slot scale
of the parameter of the distribution
signature(object = "CauchyParameter")
: modifies the slot scale
of the parameter of the
distribution
signature(object = "CauchyParameter")
: returns the slot location
of the parameter of the
distribution
signature(object = "CauchyParameter")
: modifies the slot location
of the parameter of the
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("CauchyParameter",location=1,scale=1) location(W) # location of this distribution is 1. location(W) <- 2 # location of this distribution is now 2.
W <- new("CauchyParameter",location=1,scale=1) location(W) # location of this distribution is 1. location(W) <- 2 # location of this distribution is now 2.
The chi-squared distribution with df
degrees of
freedom has density
for . The mean and variance are
and
.
The non-central chi-squared distribution with df
degrees of freedom and non-centrality parameter
ncp
has density
for . For integer
, this is the distribution of
the sum of squares of
normals each with variance one,
being the sum of squares of the normal means.
C.f. rchisq
Objects can be created by calls of the form Chisq(df, ncp)
.
This object is a chi-squared distribution.
img
Object of class "Reals"
:
The space of the image of this distribution has got dimension 1 and the name "Real Space".
param
Object of class "ChisqParameter"
:
the parameter of this distribution (df and ncp), declared at its instantiation
r
Object of class "function"
:
generates random numbers (calls function rchisq)
d
Object of class "function"
:
density function (calls function dchisq)
p
Object of class "function"
:
cumulative function (calls function pchisq)
q
Object of class "function"
:
inverse of the cumulative function (calls function qchisq)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "ExpOrGammaOrChisq"
, directly.
Class "AbscontDistribution"
, by class "ExpOrGammaOrChisq"
.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "UnivariateDistribution"
.
By means of setIs
, R “knows” that a distribution object obj
of class "Chisq"
with non-centrality 0 also is
a Gamma distribution with parameters shape = df(obj)/2, scale = 2
.
signature(.Object = "Chisq")
: initialize method
signature(object = "Chisq")
:
returns the slot df of the parameter of the distribution
signature(object = "Chisq")
:
modifies the slot df of the parameter of the distribution
signature(object = "Chisq")
:
returns the slot ncp of the parameter of the distribution
signature(object = "Chisq")
:
modifies the slot ncp of the parameter of the distribution
signature(e1 = "Chisq", e2 = "Chisq")
:
For the chi-squared distribution we use its closedness under convolutions.
Warning: The code for pchisq and qchisq is unreliable for values of ncp above approximately 290.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
ChisqParameter-class
AbscontDistribution-class
Reals-class
rchisq
C <- Chisq(df = 1, ncp = 1) # C is a chi-squared distribution with df=1 and ncp=1. r(C)(1) # one random number generated from this distribution, e.g. 0.2557184 d(C)(1) # Density of this distribution is 0.2264666 for x = 1. p(C)(1) # Probability that x < 1 is 0.4772499. q(C)(.1) # Probability that x < 0.04270125 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) df(C) # df of this distribution is 1. df(C) <- 2 # df of this distribution is now 2. is(C, "Gammad") # no C0 <- Chisq() # default: Chisq(df=1,ncp=0) is(C0, "Gammad") # yes as(C0,"Gammad")
C <- Chisq(df = 1, ncp = 1) # C is a chi-squared distribution with df=1 and ncp=1. r(C)(1) # one random number generated from this distribution, e.g. 0.2557184 d(C)(1) # Density of this distribution is 0.2264666 for x = 1. p(C)(1) # Probability that x < 1 is 0.4772499. q(C)(.1) # Probability that x < 0.04270125 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) df(C) # df of this distribution is 1. df(C) <- 2 # df of this distribution is now 2. is(C, "Gammad") # no C0 <- Chisq() # default: Chisq(df=1,ncp=0) is(C0, "Gammad") # yes as(C0,"Gammad")
The parameter of a chi-squared distribution, used by Chisq-class
Objects can be created by calls of the form new("ChisqParameter", ncp, df)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Chisq
is instantiated.
ncp
Object of class "numeric"
: the ncp of a chi-squared distribution
df
Object of class "numeric"
: the df of a chi-squared distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "ChisqParameter")
: initialize method
signature(object = "ChisqParameter")
: returns the slot df
of the parameter of the distribution
signature(object = "ChisqParameter")
: modifies the slot df
of the parameter of the distribution
signature(object = "ChisqParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "ChisqParameter")
: modifies the slot ncp
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("ChisqParameter",df=1,ncp=1) ncp(W) # ncp of this distribution is 1. ncp(W) <- 2 # ncp of this distribution is now 2.
W <- new("ChisqParameter",df=1,ncp=1) ncp(W) # ncp of this distribution is 1. ncp(W) <- 2 # ncp of this distribution is now 2.
Generates an object of class "CompoundDistribution"
.
CompoundDistribution(NumbOfSummandsDistr, SummandsDistr, .withSim = FALSE, withSimplify = FALSE)
CompoundDistribution(NumbOfSummandsDistr, SummandsDistr, .withSim = FALSE, withSimplify = FALSE)
NumbOfSummandsDistr |
Object of class |
SummandsDistr |
Object of class |
.withSim |
logical; value of the corresponding slot. |
withSimplify |
|
Object of class "CompoundDistribution"
, or if
argument withSimplify
is TRUE
the result of
simplifyD
applied to the compound distribution,
i.e. an object of class "UnivarLebDecDistribution"
, or if degenerate,
of class "AbscontDistribution"
or "DiscreteDistribution"
.
Peter Ruckdeschel [email protected]
CompoundDistribution-class
,
simplifyD
CP0 <- CompoundDistribution(Pois(), Norm()) CP0 CP1 <- CompoundDistribution(DiscreteDistribution(supp = c(1,5,9,11), prob = dbinom(0:3, size = 3,prob = 0.3)),Norm()) CP1 UL <- UnivarDistrList(Norm(), Binom(10,0.3), Chisq(df=4), Norm(), Binom(10,0.3), Chisq(df=4), Norm(), Binom(10,0.3), Chisq(df=4), Td(5), Td(10)) CP2 <- CompoundDistribution(DiscreteDistribution(supp = c(1,5,9,11), prob = dbinom(0:3, size = 3, prob = 0.3)),UL) plot(CP2)
CP0 <- CompoundDistribution(Pois(), Norm()) CP0 CP1 <- CompoundDistribution(DiscreteDistribution(supp = c(1,5,9,11), prob = dbinom(0:3, size = 3,prob = 0.3)),Norm()) CP1 UL <- UnivarDistrList(Norm(), Binom(10,0.3), Chisq(df=4), Norm(), Binom(10,0.3), Chisq(df=4), Norm(), Binom(10,0.3), Chisq(df=4), Td(5), Td(10)) CP2 <- CompoundDistribution(DiscreteDistribution(supp = c(1,5,9,11), prob = dbinom(0:3, size = 3, prob = 0.3)),UL) plot(CP2)
CompoundDistribution
-class is a class to formalize
compound distributions; it is a subclass to
class UnivarMixingDistribution
.
Objects can be created by calls of the form
new("CompoundDistribution", ...)
.
More frequently they are created via the generating function
CompoundDistribution
.
NumbOfSummandsDistr
Object of class "DiscreteDistribution"
,
the frequency distribution.
SummandsDistr
Object of class "UnivDistrListOrDistribution"
,
that is, either of class "UnivarDistrList"
(non i.i.d. case) or
of class "UnivariateDistribution"
(i.i.d. case); the summand distribution(s).
mixCoeff
Object of class "numeric"
: a vector of
probabilities for the mixing components.
mixDistr
Object of class "UnivarDistrList"
: a list of
univariate distributions containing the mixing components; must be of same
length as mixCoeff
.
img
Object of class "Reals"
: the space of the image of this distribution which has dimension 1
and the name "Real Space"
param
Object of class "Parameter"
: the parameter of this distribution, having only the
slot name "Parameter of a discrete distribution"
r
Object of class "function"
: generates random numbers
d
fixed to NULL
p
Object of class "function"
: cumulative distribution function
q
Object of class "function"
: quantile function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "UnivarMixingDistribution"
class "UnivarDistribution"
by class "UnivarMixingDistribution"
,
class "Distribution"
by class "UnivariateDistribution"
.
signature(object = "CompoundDistribution")
prints the object
signature(object = "CompoundDistribution")
returns the corresponding slot
signature(object = "CompoundDistribution")
returns the corresponding slot
There is a coerce method to coerce objects of class "CompoundDistribution"
to
class UnivarLebDecDistribution
; this is done by a simple call to simplifyD
.
Peter Ruckdeschel [email protected]
Parameter-class
,
UnivariateDistribution-class
,
LatticeDistribution-class
,
AbscontDistribution-class
,
simplifyD
,
flat.mix
CP <- CompoundDistribution(Pois(),Norm()) CP p(CP)(0.3) plot(CP)
CP <- CompoundDistribution(Pois(),Norm()) CP p(CP)(0.3) plot(CP)
Method convpow
determines the distribution of the sum of N univariate
i.i.d r.v's by means of DFT
convpow(D1,...) ## S4 method for signature 'AbscontDistribution' convpow(D1,N) ## S4 method for signature 'LatticeDistribution' convpow(D1,N, ep = getdistrOption("TruncQuantile")) ## S4 method for signature 'DiscreteDistribution' convpow(D1,N) ## S4 method for signature 'AcDcLcDistribution' convpow(D1,N, ep = getdistrOption("TruncQuantile"))
convpow(D1,...) ## S4 method for signature 'AbscontDistribution' convpow(D1,N) ## S4 method for signature 'LatticeDistribution' convpow(D1,N, ep = getdistrOption("TruncQuantile")) ## S4 method for signature 'DiscreteDistribution' convpow(D1,N) ## S4 method for signature 'AcDcLcDistribution' convpow(D1,N, ep = getdistrOption("TruncQuantile"))
D1 |
an object of (a sub)class (of) |
... |
not yet used; meanwhile takes up N |
N |
an integer or 0 (for 0 returns Dirac(0), for 1 D1) |
ep |
numeric of length 1 in (0,1) —
for |
in the methods implemented a second argument N
is obligatory;
the general methods use a general purpose convolution algorithm for
distributions by means of D/FFT. In case of an argument of class
"UnivarLebDecDistribution"
, the result will in generally be
again of class "UnivarLebDecDistribution"
. However, if acWeight(D1)
is positive, discreteWeight(convpow(D1,N))
will decay exponentially
in N
, hence from some (small) on, the result will be of
class
"AbscontDistribution"
. This is used algorithmically, too, as
then only the a.c. part needs to be convolved.
In case of an argument D1
of class "DiscreteDistribution"
,
for N
equal to 0,1 we return the obvious solutions, and for N==2
the return value is D1+D1
. For N>2
, we split up N
into
N=N1+N2
, N1=floor(N/2)
and recursively return
convpow(D1,N1)+convpow(D1,N2)
.
Object of class "AbscontDistribution"
, "DiscreteDistribution"
,
"LatticeDistribution"
resp. "AcDcLcDistribution"
There are particular methods for the following classes, using explicit convolution formulae:
signature(D1="Norm")
returns class "Norm"
signature(D1="Nbinom")
returns class "Nbinom"
signature(D1="Binom")
returns class "Binom"
signature(D1="Cauchy")
returns class "Cauchy"
signature(D1="ExpOrGammaOrChisq")
returns class
"Gammad"
—if D1
may be coerced to Gammad
signature(D1="Pois")
returns class "Pois"
signature(D1="Dirac")
returns class "Dirac"
Peter Ruckdeschel [email protected]
Matthias Kohl [email protected]
Thomas Stabla [email protected]
Kohl, M., Ruckdeschel, P., (2014): General purpose convolution algorithm for distributions in S4-Classes by means of FFT. J. Statist. Softw. 59(4): 1-25.
operators
, distrARITH()
convpow(Exp()+Pois(),4)
convpow(Exp()+Pois(),4)
d-methods
signature(object = "Distribution")
: returns the density function
decomposePM-methods
decomposePM(object)
decomposePM(object)
object |
Abscont-/Discrete-/UnivarLebDec-Distribution object |
There are particular return types for the following classes
a list with components "neg"
and
"pos"
for the respective negative and positive part; each of these
parts in its turn is a list with components D
for the distribution
(in this case of class "AbscontDistribution"
again) and w
for the weight of the respective part; if the weight of
the negative part is 0, the corresponding distribution is set to
-abs(Norm())
, and respectively, if the weight of the positive part
is 0, the corresponding distribution is set to
abs(Norm())
.
a list with components "neg"
,
"pos"
and "0"
for the respective negative, positive and zero
part; each of these parts in its turn is a list with components D
for
the distribution (in this case of class "DiscreteDistribution"
again)
and w
for the weight of the respective part; while the distribution of
the zero part is always Dirac(0)
, if the weight of
the negative part is 0, the corresponding distribution is set to
Dirac(-1)
, and respectively, if the weight of the positive part
is 0, the corresponding distribution is set to
Dirac(1)
.
a list with components "neg"
,
"pos"
and "0"
for the respective negative, positive and zero
part; each of these parts in its turn is a list with components D
for
the distribution (in case of components "neg"
,
"pos"
of class "UnivarLebDecDistribution"
again, while
the distribution of the zero part is always Dirac(0)
)
and w
for the weight of the respective part; it is build up by calling
decomposePM
for acPart(object)
and discretePart(object)
separately, hence if weights of some parts are zero the corresponding
procedure mentionned for these methods applies.
Method decomposePM
is used by our multiplication, division and exponentiation
("*"
, "/"
"^"
) - methods.
the positive and negative part of the distribution together with corresponding weights as a list.
AbscontDistribution-class
,
DiscreteDistribution-class
,
UnivarLebDecDistribution-class
,
operators-methods
decomposePM(Norm()) decomposePM(Binom(2,0.3)-Binom(5,.4)) decomposePM(UnivarLebDecDistribution(Norm(),Binom(2,0.3)-Binom(5,.4), acWeight = 0.3))
decomposePM(Norm()) decomposePM(Binom(2,0.3)-Binom(5,.4)) decomposePM(UnivarLebDecDistribution(Norm(),Binom(2,0.3)-Binom(5,.4), acWeight = 0.3))
The double exponential or Laplace distribution with rate has density
Objects can be created by calls of the form DExp(rate)
.
This object is a double exponential (or Laplace) distribution.
img
Object of class "Reals"
:
The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "ExpParameter"
:
the parameter of this distribution (rate), declared at its instantiation
r
Object of class "function"
:
generates random numbers (calls function rexp)
d
Object of class "function"
:
density function (calls function dexp)
p
Object of class "function"
:
cumulative function (calls function pexp)
q
Object of class "function"
:
inverse of the cumulative function (calls function qexp)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "DExp")
:
initialize method
signature(object = "DExp")
:
returns the slot rate of the parameter of the distribution
signature(object = "DExp")
:
modifies the slot rate of the parameter of the distribution
signature(e1 = "DExp", e2 = "numeric")
:
For the Laplace distribution we use its closedness under scaling transformations.
Peter Ruckdeschel [email protected]
Exp-class
ExpParameter-class
AbscontDistribution-class
Reals-class
rexp
D <- DExp(rate = 1) # D is a Laplace distribution with rate = 1. r(D)(1) # one random number generated from this distribution, e.g. 0.4190765 d(D)(1) # Density of this distribution is 0.1839397 for x = 1. p(D)(1) # Probability that x < 1 is 0.8160603. q(D)(.1) # Probability that x < -1.609438 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) rate(D) # rate of this distribution is 1. rate(D) <- 2 # rate of this distribution is now 2. 3*D ### still a DExp -distribution
D <- DExp(rate = 1) # D is a Laplace distribution with rate = 1. r(D)(1) # one random number generated from this distribution, e.g. 0.4190765 d(D)(1) # Density of this distribution is 0.1839397 for x = 1. p(D)(1) # Probability that x < 1 is 0.8160603. q(D)(.1) # Probability that x < -1.609438 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) rate(D) # rate of this distribution is 1. rate(D) <- 2 # rate of this distribution is now 2. 3*D ### still a DExp -distribution
df-methods
signature(object = "TParameter")
: returns the slot df
of the parameter of the distribution
signature(object = "TParameter")
: modifies the slot df
of the parameter of the distribution
signature(object = "Td")
: returns the slot df
of the parameter of the distribution
signature(object = "Td")
: modifies the slot df
of the parameter of the distribution
signature(object = "ChisqParameter")
: returns the slot df
of the parameter of the distribution
signature(object = "ChisqParameter")
: modifies the slot df
of the parameter of the distribution
signature(object = "Chisq")
: returns the slot df
of the parameter of the distribution
signature(object = "Chisq")
: modifies the slot df
of the parameter of the distribution
df-methods
signature(object = "FParameter")
: returns the slot df1
of the parameter of an F-distribution
signature(object = "FParameter")
: modifies the slot df1
of the parameter of an F-distribution
signature(object = "Fd")
: returns the slot df1
of the slot param
of the distribution
signature(object = "Fd")
: modifies the slot df1
of the slot param
of the distribution
df-methods
signature(object = "FParameter")
: returns the slot df2
of the parameter of an F-distribution
signature(object = "FParameter")
: modifies the slot df2
of the parameter of an F-distribution
signature(object = "Fd")
: returns the slot df2
of the slot param
of the distribution
signature(object = "Fd")
: modifies the slot df2
of the slot param
of the distribution
dim-methods
signature(object = "UnivariateDistribution")
: returns the dimension of the distribution
dimension-methods
signature(object = "EuclideanSpace")
: returns the dimension of the space
signature(object = "EuclideanSpace")
: modifies the dimension of the space
The Dirac distribution with location , by default
, has density
for
,
else.
Objects can be created by calls of the form Dirac(location)
.
This object is a Dirac
distribution.
img
Object of class "Naturals"
: The space of the image of this
distribution has got dimension 1 and the name "Real Space".
param
Object of class "DiracParameter"
: the parameter of this distribution (location), declared at its instantiation
r
Object of class "function"
: generates random numbers
d
Object of class "function"
: density function
p
Object of class "function"
: cumulative function
q
Object of class "function"
: inverse of the cumulative function
support
Object of class "numeric"
: a (sorted) vector containing the support of the discrete density function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "DiscreteDistribution"
, directly.
Class "UnivariateDistribution"
, by class "DiscreteDistribution"
.
Class "Distribution"
, by class "DiscreteDistribution"
.
signature(e1 = "Dirac", e2 = "Dirac")
signature(e1 = "Dirac", e2 = "Dirac")
signature(e1 = "Dirac", e2 = "Dirac")
signature(e1 = "Dirac", e2 = "Dirac")
:
For the Dirac distribution these operations are trivial.
signature(.Object = "Dirac")
: initialize method
signature(object = "Dirac")
: returns the slot location
of the parameter of the distribution
signature(object = "Dirac")
: modifies the slot location
of the parameter of the distribution
signature(object = "Dirac")
: returns an object of class "Dirac"
distribution with log-transformed
location
parameter.
signature(object = "Dirac")
: given a "Math"
group generic fun
an object of class
"Dirac"
distribution with fun
-transformed location
parameter is returned.
further arithmetic methods see operators-methods
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
DiracParameter-class
DiscreteDistribution-class
Naturals-class
D <- Dirac(location = 0) # D is a Dirac distribution with location=0. r(D)(1) # r(D)(1) generates a pseudo-random-number according to a Dirac # distribution with location = 0, # which of course will take 0 as value almost surely. d(D)(0) # Density of this distribution is 1 for x = 0. p(D)(1) # Probability that x < 1 is 1. q(D)(.1) # q(D)(x) is always 0 (= location). ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) location(D) # location of this distribution is 0. location(D) <- 2 # location of this distribution is now 2.
D <- Dirac(location = 0) # D is a Dirac distribution with location=0. r(D)(1) # r(D)(1) generates a pseudo-random-number according to a Dirac # distribution with location = 0, # which of course will take 0 as value almost surely. d(D)(0) # Density of this distribution is 1 for x = 0. p(D)(1) # Probability that x < 1 is 1. q(D)(.1) # q(D)(x) is always 0 (= location). ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) location(D) # location of this distribution is 0. location(D) <- 2 # location of this distribution is now 2.
The parameter of a Dirac distribution, used by Dirac
-class
Objects can be created by calls of the form new("DiracParameter", location)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Dirac
is instantiated.
location
Object of class "numeric"
: the location of a Dirac distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "DiracParameter")
: initialize method
signature(object = "DiracParameter")
: returns the slot location of the parameter of the
distribution
signature(object = "DiracParameter")
: modifies the slot location of the parameter of the
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("DiracParameter",location=1) location(W) # location of this distribution is 1. location(W) <- 2 # location of this distribution is now 2.
W <- new("DiracParameter",location=1) location(W) # location of this distribution is 1. location(W) <- 2 # location of this distribution is now 2.
Generates an object of class "DiscreteDistribution"
DiscreteDistribution(supp, prob, .withArith=FALSE, .withSim=FALSE, .lowerExact = TRUE, .logExact = FALSE, .DistrCollapse = getdistrOption("DistrCollapse"), .DistrCollapse.Unique.Warn = getdistrOption("DistrCollapse.Unique.Warn"), .DistrResolution = getdistrOption("DistrResolution"), Symmetry = NoSymmetry())
DiscreteDistribution(supp, prob, .withArith=FALSE, .withSim=FALSE, .lowerExact = TRUE, .logExact = FALSE, .DistrCollapse = getdistrOption("DistrCollapse"), .DistrCollapse.Unique.Warn = getdistrOption("DistrCollapse.Unique.Warn"), .DistrResolution = getdistrOption("DistrResolution"), Symmetry = NoSymmetry())
supp |
numeric vector which forms the support of the discrete distribution. |
prob |
vector of probability weights for the
elements of |
.withArith |
normally not set by the user, but if determining the entries |
.withSim |
normally not set by the user, but if determining the entries |
.lowerExact |
normally not set by the user: whether the |
.logExact |
normally not set by the user: whether in determining slots |
.DistrCollapse |
controls whether in generating a new discrete
distribution, support points closer together than |
.DistrCollapse.Unique.Warn |
controls whether there is a warning
whenever collapsing occurs or when two points are collapsed by a call to
|
.DistrResolution |
minimal spacing between two mass points in a discrete distribution |
Symmetry |
you may help R in calculations if you tell it whether
the distribution is non-symmetric (default) or symmetric with respect
to a center; in this case use |
If prob
is missing, all elements in supp
are equally weighted.
Typical usages are
DiscreteDistribution(supp, prob) DiscreteDistribution(supp)
Object of class "DiscreteDistribution"
Working with a computer, we use a finite interval as support which
carries at least mass 1-getdistrOption("TruncQuantile")
.
Also, we require that support points have distance at least
.DistrResoltion
, if this condition fails,
upon a suggestion by Jacob van Etten, [email protected],
we use the global option .DistrCollapse
to
decide whether we use collapsing or not. If we do so, we collapse support
points if they are too close to each other, taking
the (left most) median among them as new support point which accumulates
all the mass of the collapsed points.
With .DistrCollapse==FALSE
, we at least collapse
points according to the result of unique()
, and if after this
collapsing, the minimal distance is less than .DistrResoltion
,
we throw an error. By .DistrCollapse.Unique.Warn
,
we control, whether we throw a warning upon collapsing or not.
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
DiscreteDistribution-class
AbscontDistribution-class
RtoDPQ.d
# Dirac-measure at 0 D1 <- DiscreteDistribution(supp = 0) D1 # simple discrete distribution D2 <- DiscreteDistribution(supp = c(1:5), prob = c(0.1, 0.2, 0.3, 0.2, 0.2)) D2 plot(D2)
# Dirac-measure at 0 D1 <- DiscreteDistribution(supp = 0) D1 # simple discrete distribution D2 <- DiscreteDistribution(supp = c(1:5), prob = c(0.1, 0.2, 0.3, 0.2, 0.2)) D2 plot(D2)
The DiscreteDistribution
-class is the mother-class of the class LatticeDistribution
.
Objects can be created by calls to new("DiscreteDistribution", ...)
, but more
easily is the use of the generating function "DiscreteDistribution"
.
This generating function, from version 1.9 on, has been moved to this package from package distrEx.
img
Object of class "Reals"
: the space of the image of this distribution which has dimension 1
and the name "Real Space"
param
Object of class "Parameter"
: the parameter of this distribution, having only the
slot name "Parameter of a discrete distribution"
r
Object of class "function"
: generates random numbers
d
Object of class "function"
: density/probability function
p
Object of class "function"
: cumulative distribution function
q
Object of class "function"
: quantile function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
.finSupport
logical: used internally to check whether the
true support is finite; in case img
is one-dimensional, it is
of length 2 (left and right end).
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "UnivariateDistribution"
, directly.
Class "Distribution"
, by class "UnivariateDistribution"
.
signature(.Object = "DiscreteDistribution")
: initialize method
signature(from = "DiscreteDistribution",
to = "LatticeDistribution")
: coerce method to class "LatticeDistribution"
(checks if support is a lattice)
signature(x = "DiscreteDistribution")
: application of a mathematical function, e.g. sin
or tan
to this discrete distribution
abs
: signature(x = "DiscreteDistribution")
: exact image distribution of abs(x)
.
exp
: signature(x = "DiscreteDistribution")
: exact image distribution of exp(x)
.
sign
: signature(x = "DiscreteDistribution")
: exact image distribution of sign(x)
.
sqrt
: signature(x = "DiscreteDistribution")
: exact image distribution of sqrt(x)
.
log
: signature(x = "DiscreteDistribution")
: (with optional further argument base
, defaulting to exp(1)
) exact image distribution of log(x)
.
log10
: signature(x = "DiscreteDistribution")
: exact image distribution of log10(x)
.
gamma
: signature(x = "DiscreteDistribution")
: exact image distribution of gamma(x)
.
lgamma
: signature(x = "DiscreteDistribution")
: exact image distribution of lgamma(x)
.
digamma
: signature(x = "DiscreteDistribution")
: exact image distribution of digamma(x)
.
signature(e1 = "DiscreteDistribution")
: application of ‘-’ to this discrete distribution
signature(e1 = "DiscreteDistribution", e2 = "numeric")
: multiplication of this discrete distribution
by an object of class ‘numeric’
signature(e1 = "DiscreteDistribution", e2 = "numeric")
: division of this discrete distribution
by an object of class ‘numeric’
signature(e1 = "DiscreteDistribution", e2 = "numeric")
: addition of this discrete distribution
to an object of class ‘numeric’
signature(e1 = "DiscreteDistribution", e2 = "numeric")
: subtraction of an object of class ‘numeric’
from this discrete distribution
signature(e1 = "numeric", e2 = "DiscreteDistribution")
: multiplication of this discrete distribution
by an object of class ‘numeric’
signature(e1 = "numeric", e2 = "DiscreteDistribution")
: addition of this discrete distribution
to an object of class ‘numeric’
signature(e1 = "numeric", e2 = "DiscreteDistribution")
: subtraction of this discrete distribution
from an object of class ‘numeric’
signature(e1 = "DiscreteDistribution", e2 = "DiscreteDistribution")
: Convolution of two discrete
distributions. The slots p, d and q are approximated on a common grid.
signature(e1 = "DiscreteDistribution", e2 = "DiscreteDistribution")
: Convolution of two discrete
distributions. The slots p, d and q are approximated on a common grid.
signature(object = "DiscreteDistribution")
: returns the support
signature(object = "DiscreteDistribution")
: returns the
left continuous cumulative distribution function, i.e.;
signature(object = "DiscreteDistribution")
: returns the
right-continuous quantile function, i.e.;
signature(object = "DiscreteDistribution")
: plots density, cumulative distribution and quantile
function
To enhance accuracy of several functionals on distributions,
mainly from package distrEx, from version 1.9 of this package on,
there is an internally used (but exported) subclass
"AffLinDiscreteDistribution"
which has extra slots
a
, b
(both of class "numeric"
), and X0
(of class "DiscreteDistribution"
), to capture the fact
that the object has the same distribution as a * X0 + b
. This is
the class of the return value of methods
signature(e1 = "DiscreteDistribution")
signature(e1 = "DiscreteDistribution", e2 = "numeric")
signature(e1 = "DiscreteDistribution", e2 = "numeric")
signature(e1 = "DiscreteDistribution", e2 = "numeric")
signature(e1 = "DiscreteDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "DiscreteDistribution")
signature(e1 = "numeric", e2 = "DiscreteDistribution")
signature(e1 = "numeric", e2 = "DiscreteDistribution")
signature(e1 = "AffLinDiscreteDistribution")
signature(e1 = "AffLinDiscreteDistribution", e2 = "numeric")
signature(e1 = "AffLinDiscreteDistribution", e2 = "numeric")
signature(e1 = "AffLinDiscreteDistribution", e2 = "numeric")
signature(e1 = "AffLinDiscreteDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "AffLinDiscreteDistribution")
signature(e1 = "numeric", e2 = "AffLinDiscreteDistribution")
signature(e1 = "numeric", e2 = "AffLinDiscreteDistribution")
There also is a class union of "AffLinAbscontDistribution"
,
"AffLinDiscreteDistribution"
, "AffLinUnivarLebDecDistribution"
and called "AffLinDistribution"
which is used for functionals.
As many operations should be valid no matter whether the operands
are of class "AbscontDistribution"
,
"DiscreteDistribution"
, or "UnivarLebDecDistribution"
,
there is a class union of these classes called "AcDcLcDistribution"
;
in partiucalar methods for "*"
, "/"
,
"^"
(see operators-methods) and methods
Minimum
, Maximum
, Truncate
, and
Huberize
, and convpow
are defined for this
class union.
Working with a computer, we use a finite interval as support which
carries at least mass 1-getdistrOption("TruncQuantile")
.
Also, we require that support points have distance at least
getdistrOption("DistrResoltion")
, if this condition fails,
upon a suggestion by Jacob van Etten, [email protected],
we use the global option getdistrOption("DistrCollapse")
to
decide whether we use collapsing or not. If we do so, we collapse support
points if they are too close to each other, taking
the (left most) median among them as new support point which accumulates
all the mass of the collapsed points.
With getdistrOption("DistrCollapse")==FALSE
, we at least collapse
points according to the result of unique()
, and if after this
collapsing, the minimal distance is less than getdistrOption("DistrResoltion")
,
we throw an error. By getdistrOption("DistrCollapse.Unique.Warn")
,
we control, whether we throw a warning upon collapsing or not.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Parameter-class
UnivariateDistribution-class
LatticeDistribution-class
AbscontDistribution-class
Reals-class
RtoDPQ.d
# Dirac-measure at 0 D1 <- DiscreteDistribution(supp = 0) support(D1) # simple discrete distribution D2 <- DiscreteDistribution(supp = c(1:5), prob = c(0.1, 0.2, 0.3, 0.2, 0.2)) plot(D2) (pp <- p(D2)(support(D2))) p(D2)(support(D2)-1e-5) p(D2)(support(D2)+1e-5) p.l(D2)(support(D2)) p.l(D2)(support(D2)-1e-5) p.l(D2)(support(D2)+1e-5) q(D2)(pp) q(D2)(pp-1e-5) q(D2)(pp+1e-5) ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) q.r(D2)(pp) q.r(D2)(pp-1e-5) q.r(D2)(pp+1e-5)
# Dirac-measure at 0 D1 <- DiscreteDistribution(supp = 0) support(D1) # simple discrete distribution D2 <- DiscreteDistribution(supp = c(1:5), prob = c(0.1, 0.2, 0.3, 0.2, 0.2)) plot(D2) (pp <- p(D2)(support(D2))) p(D2)(support(D2)-1e-5) p(D2)(support(D2)+1e-5) p.l(D2)(support(D2)) p.l(D2)(support(D2)-1e-5) p.l(D2)(support(D2)+1e-5) q(D2)(pp) q(D2)(pp-1e-5) q(D2)(pp+1e-5) ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) q.r(D2)(pp) q.r(D2)(pp-1e-5) q.r(D2)(pp+1e-5)
The parameter of a geometric distribution, used by Geom-class
Objects were created by calls of the form new("GeomParameter", prob)
.
Usually an object of this class was not needed on its own, it was generated
automatically when an object of the class Geom
is instantiated.
prob
Object of class "numeric"
: the probability of a
geometric distribution
name
Object of class "character"
:
a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "GeomParameter")
:
initialize method
signature(object = "GeomParameter")
:
returns the slot prob
of the parameter of the
distribution
signature(object = "GeomParameter")
:
modifies the slot prob
of the parameter of the
distribution
The use of class GeomParameter
is defunct as of version 2.8.0;
it is to be replaced by a corresponding use
of class NbinomParameter
with slot size = 1
which may be
generated, e.g. by
new("NbinomParameter", prob, size = 1,
name = "Parameter of a Geometric distribution")
Peter Ruckdeschel [email protected]
Provides information on the interpretation of arithmetics operating on Distributions in package distr
distrARITH(library = NULL)
distrARITH(library = NULL)
library |
a character vector with path names of R libraries, or |
no value is returned
Peter Ruckdeschel [email protected]
## IGNORE_RDIFF_BEGIN distrARITH() ## IGNORE_RDIFF_END
## IGNORE_RDIFF_BEGIN distrARITH() ## IGNORE_RDIFF_END
The Distribution-class
is the mother-class of
class UnivariateDistribution
.
Objects can be created by calls of the form new("Distribution")
.
img
Object of class "rSpace"
: the space of the image
param
Object of class "OptionalParameter"
: the parameter
r
Object of class "function"
: generates random numbers
d
Object of class "OptionalFunction"
: density function
p
Object of class "OptionalFunction"
: cumulative
distribution function
q
Object of class "OptionalFunction"
: quantile function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
signature(object = "Distribution")
: returns the space of
the image
signature(object = "Distribution")
: returns the
parameter
signature(object = "Distribution")
: returns the random
number generator
signature(object = "Distribution")
: returns the density
function
signature(object = "Distribution")
: returns the cumulative
distribution function
signature(object = "Distribution")
: returns the quantile
function
signature(object = "Distribution")
: returns slot
.logExact
if existing; else tries to convert the object to a newer
version of its class by conv2NewVersion
and
returns the corresponding slot of the converted object.
signature(object = "Distribution")
: returns slot
.lowerExact
if existing; else tries to convert the object to a
newer version of its class by conv2NewVersion
and
returns the corresponding slot of the converted object.
returns slot Symmetry
if existing; else
tries to convert the object to a
newer version of its class by conv2NewVersion
and
returns the corresponding slot of the converted object.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
UnivariateDistribution-class
Parameter-class
Class of symmetries for distributions.
A virtual Class: No objects may be created from it.
type
Object of class "character"
:
discribes type of symmetry.
SymmCenter
Object of class "OptionalNumeric"
:
center of symmetry.
Class "Symmetry"
, directly.
Matthias Kohl [email protected]
Symmetry-class
, Distribution-class
,
OptionalNumeric-class
Generates an object of class "DistrList"
.
DistrList(..., Dlist)
DistrList(..., Dlist)
... |
Objects of class |
Dlist |
an optional list or object of class |
Object of class "DistrList"
Matthias Kohl [email protected]
DistrList-class
, UnivarDistrList-class
,
UnivarDistrList
(DL <- DistrList(Norm(), Exp(), Pois())) plot(DL) as(Norm(), "DistrList") ## The function is currently defined as function(...){ new("DistrList", list(...)) }
(DL <- DistrList(Norm(), Exp(), Pois())) plot(DL) as(Norm(), "DistrList") ## The function is currently defined as function(...){ new("DistrList", list(...)) }
Create a list of distributions
Objects can be created by calls of the form new("DistrList", ...)
.
More frequently they are created via the generating function
DistrList
.
.Data
Object of class "list"
.
A list of distributions.
Class "list"
, from data part.
Class "vector"
, by class "list"
.
signature(object = "DistrList")
signature(object = "DistrList")
signature(from = "Distribution", to = "DistrList")
:
create a "DistrList"
object from a "Distribution"
object
Matthias Kohl [email protected]
(DL <- new("DistrList", list(Norm(), Exp()))) plot(DL) as(Norm(), "DistrList")
(DL <- new("DistrList", list(Norm(), Exp()))) plot(DL) as(Norm(), "DistrList")
Provides information on the (intended) masking of and (non-intended) masking by other other functions in package distr
distrMASK(library = NULL)
distrMASK(library = NULL)
library |
a character vector with path names of R libraries, or |
no value is returned
Peter Ruckdeschel [email protected]
## IGNORE_RDIFF_BEGIN distrMASK() ## IGNORE_RDIFF_END
## IGNORE_RDIFF_BEGIN distrMASK() ## IGNORE_RDIFF_END
With distroptions
and getdistrOption
you may inspect and change the global
variables used by package distr.
distroptions(...) getdistrOption(x)
distroptions(...) getdistrOption(x)
... |
any options can be defined, using name = value or by passing a list of such tagged values. |
x |
a character string holding an option name. |
Invoking distroptions()
with no arguments returns a list with the current values of the options.
To access the value of a single option, one should use getdistrOption("WarningSim")
, e.g., rather than
distroptions("WarningSim")
which is a list of length one.
distroptions()
returns a list of the global options of distr. distroptions("RtoDPQ.e")
returns the global option RtoDPQ.e
as a list of length 1. distroptions("RtoDPQ.e" = 3)
sets the value of the global option RtoDPQ.e
to 3.
getdistrOption("RtoDPQ.e")
the current value set for option RtoDPQ.e
.
DefaultNrGridPoints
default number of grid points in integration, default value: 2^12
DistrResolution
minimal spacing between two mass points in a discrete distribution, default value: 1e-6
DistrCollapse
logical; in discrete distributions, shall support points
with distance smaller than DistrResolution
be collapsed; default value: TRUE
TruncQuantile
argument for q
-slot at which to truncate; also, for discrete distributions,
support is restricted to [q(TruncQuantile)
,q(1-TruncQuantile)
], default value: 1e-5
DefaultNrFFTGridPointsExponent
by default, for e = DefaultNrFFTGridPointsExponent
,
FFT uses gridpoints; default value:
12
RtoDPQ.e
by default, for reconstructing the d
-,p
-,q
-slots out of simulations by slot r
,
RtoDPQ
resp. RtoDPQ.d
use simulations, where e =
RtoDPQ.e
, default value: 5
WarningSim
if WarningSim==TRUE
, print
/show
issue a warning as to the precision of
d
-,p
-,q
-slots when these are obtained by RtoDPQ
resp. RtoDPQ.d
, default value: TRUE
WarningArith
if WarningArith==TRUE
, print
/show
issue a warning as to the interpretation of
arithmetics operating on distributions, when the corresponding distribution to be plotted/shown is obtained by such an operation;
keep in mind that arithmetics in fact operate on random variables distributed according to the given distributions and not
on corresponding cdf's or densities; default value: TRUE
withSweave
is code run in Sweave (then no new graphic devices are opened),
default value: FALSE
withgaps
controls whether in the return value of arithmetic
operations the slot gaps
of an the AbscontDistribution
part
is filled automatically based on empirical evaluations via setgaps
—default TRUE
simplifyD
controls whether in the return value of arithmetic
operations there is a call to simplifyD
or not —default TRUE
logical; decides whether by default
(i.e., if argument generalized
of solve
is not explicitely
set), solve
is to use generalized inverses if the original
solve
-method from package base fails; if the option is FALSE
,
in case of failure, and unless argument generalized
is not explicitely
set to TRUE
, solve
will throw an error as is
the base-method behavior. The default value is TRUE
.
DistrCollapse.Unique.Warn
controls whether there is a warning
whenever collapsing occurs or when two points are collapsed by a call to
unique()
(default behaviour if DistrCollapse
is FALSE
);
—default FALSE
warn.makeDNew
controls whether a warning is issued once in
internal utility .makeDNew
standard integration with
integrate
throws an error—default TRUE
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
distroptions("RtoDPQ.e") # returns the value of RtoDPQ.e, by default = 5 currentDistrOptions <- distroptions() distroptions(RtoDPQ.e = 6) distroptions("RtoDPQ.e") getdistrOption("RtoDPQ.e") distroptions(c("WarningSim","WarningArith")) getdistrOption("WarningSim") distroptions("WarningSim" = FALSE) # switches off warnings as to (In)accuracy due to simulations distroptions("WarningArith" = FALSE) # switches off warnings as to arithmetics distroptions(currentDistrOptions)
distroptions("RtoDPQ.e") # returns the value of RtoDPQ.e, by default = 5 currentDistrOptions <- distroptions() distroptions(RtoDPQ.e = 6) distroptions("RtoDPQ.e") getdistrOption("RtoDPQ.e") distroptions(c("WarningSim","WarningArith")) getdistrOption("WarningSim") distroptions("WarningSim" = FALSE) # switches off warnings as to (In)accuracy due to simulations distroptions("WarningArith" = FALSE) # switches off warnings as to arithmetics distroptions(currentDistrOptions)
Generates an object of class "DistrSymmList"
.
DistrSymmList(...)
DistrSymmList(...)
... |
Objects of class |
Object of class "DistrSymmList"
Matthias Kohl [email protected]
DistrSymmList(NoSymmetry(), SphericalSymmetry(SymmCenter = 1), EllipticalSymmetry(SymmCenter = 2)) ## The function is currently defined as function (...){ new("DistrSymmList", list(...)) }
DistrSymmList(NoSymmetry(), SphericalSymmetry(SymmCenter = 1), EllipticalSymmetry(SymmCenter = 2)) ## The function is currently defined as function (...){ new("DistrSymmList", list(...)) }
Create a list of symmetries for a list of distributions
Objects can be created by calls of the form new("DistrSymmList", ...)
.
More frequently they are created via the generating function
DistrSymmList
.
.Data
Object of class "list"
. A list
of objects of class "DistributionSymmetry"
.
Class "list"
, from data part.
Class "vector"
, by class "list"
.
Matthias Kohl [email protected]
new("DistrSymmList", list(NoSymmetry(), SphericalSymmetry(SymmCenter = 1), EllipticalSymmetry(SymmCenter = 2)))
new("DistrSymmList", list(NoSymmetry(), SphericalSymmetry(SymmCenter = 1), EllipticalSymmetry(SymmCenter = 2)))
Generates an object of class "EllipticalSymmetry"
.
EllipticalSymmetry(SymmCenter = 0)
EllipticalSymmetry(SymmCenter = 0)
SymmCenter |
numeric: center of symmetry |
Object of class "EllipticalSymmetry"
Matthias Kohl [email protected]
EllipticalSymmetry-class
, DistributionSymmetry-class
EllipticalSymmetry() ## The function is currently defined as function(SymmCenter = 0){ new("EllipticalSymmetry", SymmCenter = SymmCenter) }
EllipticalSymmetry() ## The function is currently defined as function(SymmCenter = 0){ new("EllipticalSymmetry", SymmCenter = SymmCenter) }
Class for elliptically symmetric distributions.
Objects can be created by calls of the form new("EllipticalSymmetry")
.
More frequently they are created via the generating function
EllipticalSymmetry
. Elliptical symmetry for instance leads to
a simplification for the computation of optimally robust influence curves.
type
Object of class "character"
:
contains “elliptical symmetric distribution”
SymmCenter
Object of class "numeric"
:
center of symmetry
Class "DistributionSymmetry"
, directly.
Class "Symmetry"
, by class "DistributionSymmetry"
.
Matthias Kohl [email protected]
EllipticalSymmetry
, DistributionSymmetry-class
new("EllipticalSymmetry")
new("EllipticalSymmetry")
Generates an object of class "DiscreteDistribution"
EmpiricalDistribution(data, .withArith=FALSE, .withSim=FALSE, .lowerExact = TRUE, .logExact = FALSE, .DistrCollapse = getdistrOption("DistrCollapse"), .DistrCollapse.Unique.Warn = getdistrOption("DistrCollapse.Unique.Warn"), .DistrResolution = getdistrOption("DistrResolution"), Symmetry = NoSymmetry())
EmpiricalDistribution(data, .withArith=FALSE, .withSim=FALSE, .lowerExact = TRUE, .logExact = FALSE, .DistrCollapse = getdistrOption("DistrCollapse"), .DistrCollapse.Unique.Warn = getdistrOption("DistrCollapse.Unique.Warn"), .DistrResolution = getdistrOption("DistrResolution"), Symmetry = NoSymmetry())
data |
numeric vector with data. |
.withArith |
normally not set by the user, but if determining the entries |
.withSim |
normally not set by the user, but if determining the entries |
.lowerExact |
normally not set by the user: whether the |
.logExact |
normally not set by the user: whether in determining slots |
.DistrCollapse |
controls whether in generating a new discrete
distribution, support points closer together than |
.DistrCollapse.Unique.Warn |
controls whether there is a warning
whenever collapsing occurs or when two points are collapsed by a call to
|
.DistrResolution |
minimal spacing between two mass points in a discrete distribution |
Symmetry |
you may help R in calculations if you tell it whether
the distribution is non-symmetric (default) or symmetric with respect
to a center; in this case use |
The function is a simple utility function providing a wrapper to the
generating function DiscreteDistribution
.
Typical usage is
EmpiricalDistribution(data)
Object of class "DiscreteDistribution"
Matthias Kohl [email protected]
DiscreteDistribution
DiscreteDistribution-class
x <- rnorm(20) D1 <- EmpiricalDistribution(data = x) D1 plot(D1)
x <- rnorm(20) D1 <- EmpiricalDistribution(data = x) D1 plot(D1)
The distribution-classes contain a slot where the sample space is stored. One typical sample space is the Euclidean Space in dimension k.
EuclideanSpace(dimension = 1)
EuclideanSpace(dimension = 1)
dimension |
positive integer: dimension of
the Euclidean space (default |
Objects could theoretically be created by calls of the form new("EuclideanSpace", dimension, name)
.
Usually an object of this class is not needed on its own. EuclideanSpace
is the mother-class of the class
Reals
, which is generated automatically when a univariate absolutly continuous distribution is instantiated.
dimension
Object of class "numeric"
: the dimension of the space, by default = 1
name
Object of class "character"
: the name of the space, by default = "Euclidean Space"
Class "rSpace"
, directly.
signature(.Object = "EuclideanSpace")
: initialize method
signature(object = "EuclideanSpace", x = "numeric")
: Does a particular vector lie in this space or
not?
signature(object = "EuclideanSpace")
: returns the dimension of the space
signature(object = "EuclideanSpace")
: modifies the dimension of the space
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
rSpace-class
Reals-class
Distribution-class
liesIn-methods
E <- EuclideanSpace(dimension = 2) dimension(E) # The dimension of this space is 2. dimension(E) <- 3 # The dimension of this space is now 3. liesIn(E,c(0,0,0)) # TRUE liesIn(E,c(0,0)) # FALSE
E <- EuclideanSpace(dimension = 2) dimension(E) # The dimension of this space is 2. dimension(E) <- 3 # The dimension of this space is now 3. liesIn(E,c(0,0,0)) # TRUE liesIn(E,c(0,0)) # FALSE
The exponential distribution with rate has density
for .
C.f. rexp
Objects can be created by calls of the form Exp(rate)
.
This object is an exponential distribution.
img
Object of class "Reals"
:
The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "ExpParameter"
:
the parameter of this distribution (rate), declared at its instantiation
r
Object of class "function"
:
generates random numbers (calls function rexp)
d
Object of class "function"
:
density function (calls function dexp)
p
Object of class "function"
:
cumulative function (calls function pexp)
q
Object of class "function"
:
inverse of the cumulative function (calls function qexp)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "ExpOrGammaOrChisq"
, directly.
Class "AbscontDistribution"
, by class "ExpOrGammaOrChisq"
.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
By means of setIs
, R “knows” that a distribution object obj
of class "Exp"
also is
a Gamma distribution with parameters shape = 1, scale = 1/rate(obj)
and a Weibull distribution with
parameters shape = 1, scale = 1/rate(obj)
signature(.Object = "Exp")
:
initialize method
signature(object = "Exp")
:
returns the slot rate of the parameter of the distribution
signature(object = "Exp")
:
modifies the slot rate of the parameter of the distribution
signature(e1 = "Exp", e2 = "numeric")
:
For the exponential distribution we use its closedness under positive scaling transformations.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
ExpParameter-class
AbscontDistribution-class
Reals-class
rexp
E <- Exp(rate = 1) # E is a exp distribution with rate = 1. r(E)(1) # one random number generated from this distribution, e.g. 0.4190765 d(E)(1) # Density of this distribution is 0.3678794 for x = 1. p(E)(1) # Probability that x < 1 is 0.6321206. q(E)(.1) # Probability that x < 0.1053605 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) rate(E) # rate of this distribution is 1. rate(E) <- 2 # rate of this distribution is now 2. is(E, "Gammad") # yes as(E,"Gammad") is(E, "Weibull") E+E+E ### a Gammad -distribution 2*E+Gammad(scale=1)
E <- Exp(rate = 1) # E is a exp distribution with rate = 1. r(E)(1) # one random number generated from this distribution, e.g. 0.4190765 d(E)(1) # Density of this distribution is 0.3678794 for x = 1. p(E)(1) # Probability that x < 1 is 0.6321206. q(E)(.1) # Probability that x < 0.1053605 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) rate(E) # rate of this distribution is 1. rate(E) <- 2 # rate of this distribution is now 2. is(E, "Gammad") # yes as(E,"Gammad") is(E, "Weibull") E+E+E ### a Gammad -distribution 2*E+Gammad(scale=1)
The parameter of an exponential distribution, used by Exp-class and DExp-class
Objects can be created by calls of the form new("ExpParameter", rate)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Exp
is instantiated.
rate
Object of class "numeric"
: the rate of an exponential distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "ExpParameter")
: initialize method
signature(object = "ExpParameter")
: returns the slot rate
of the parameter of the distribution
signature(object = "ExpParameter")
: modifies the slot rate
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Exp-class
DExp-class
Parameter-class
W <- new("ExpParameter", rate = 1) rate(W) # rate of this distribution is 1. rate(W) <- 2 # rate of this distribution is now 2.
W <- new("ExpParameter", rate = 1) rate(W) # rate of this distribution is 1. rate(W) <- 2 # rate of this distribution is now 2.
The F distribution with df1 =
, by default
= 1
,
and df2 =
, by default
= 1
, degrees of freedom has density
for .
C.f. rf
Objects can be created by calls of the form Fd(df1, df2)
.
This object is a F distribution.
img
Object of class "Reals"
: The space of the image of this distribution has got dimension 1 and the name "Real Space".
param
Object of class "FParameter"
: the parameter of this distribution (df1 and df2), declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rf)
d
Object of class "function"
: density function (calls function df)
p
Object of class "function"
: cumulative function (calls function pf)
q
Object of class "function"
: inverse of the cumulative function (calls function qf)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Fd")
: initialize method
signature(object = "Fd")
: returns the slot df1
of the parameter of the distribution
signature(object = "Fd")
: modifies the slot df1
of the parameter of the distribution
signature(object = "Fd")
: returns the slot df2
of the parameter of the distribution
signature(object = "Fd")
: modifies the slot df2
of the parameter of the distribution
An ad hoc method is provided for slot d
if ncp!=0
.
For R Version <2.3.0
ad hoc methods are provided for slots q
, r
if ncp!=0
;
for R Version >=2.3.0
the methods from package stats are used.
It is the distribution of the ratio of the mean squares of n1 and n2 independent standard normals, and hence of the
ratio of two independent chi-squared variates each divided by its degrees of freedom. Since the ratio of a normal and the
root mean-square of m independent normals has a Student's distribution, the square of a
variate has a F
distribution on 1 and m degrees of freedom.
The non-central F distribution is again the ratio of mean squares of independent normals of unit variance, but those in the numerator are allowed to have non-zero means and ncp is the sum of squares of the means.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
FParameter-class
AbscontDistribution-class
Reals-class
rf
F <- Fd(df1 = 1, df2 = 1) # F is a F distribution with df=1 and df2=1. r(F)(1) # one random number generated from this distribution, e.g. 29.37863 d(F)(1) # Density of this distribution is 0.1591549 for x=1 . p(F)(1) # Probability that x<1 is 0.5. q(F)(.1) # Probability that x<0.02508563 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) df1(F) # df1 of this distribution is 1. df1(F) <- 2 # df1 of this distribution is now 2. Fn <- Fd(df1 = 1, df2 = 1, ncp = 0.5) # Fn is a F distribution with df=1, df2=1 and ncp =0.5. d(Fn)(1) ## from R 2.3.0 on ncp no longer ignored...
F <- Fd(df1 = 1, df2 = 1) # F is a F distribution with df=1 and df2=1. r(F)(1) # one random number generated from this distribution, e.g. 29.37863 d(F)(1) # Density of this distribution is 0.1591549 for x=1 . p(F)(1) # Probability that x<1 is 0.5. q(F)(.1) # Probability that x<0.02508563 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) df1(F) # df1 of this distribution is 1. df1(F) <- 2 # df1 of this distribution is now 2. Fn <- Fd(df1 = 1, df2 = 1, ncp = 0.5) # Fn is a F distribution with df=1, df2=1 and ncp =0.5. d(Fn)(1) ## from R 2.3.0 on ncp no longer ignored...
flattens a list of Lebesgue decomposed distributions endowed with weights to give one Lebesgue decomposed distribution
flat.LCD(..., mixCoeff = NULL, withgaps = getdistrOption("withgaps"))
flat.LCD(..., mixCoeff = NULL, withgaps = getdistrOption("withgaps"))
... |
list of Lebesgue decomposed distributions |
mixCoeff |
Object of class |
withgaps |
logical; shall |
flat.LCD
flattens a list of Lebesgue decomposed distributions given through ...
,
i.e., it takes all list elements and mixing coefficients and builds up the mixed
distribution (forgetting about the components); the result will be one distribution of
class UnivarLebDecDistribution
. If mixCoeff
is missing, all list elements
are equally weighted. It is used internally in our methods for "*"
, "/"
,
"^"
(see operators-methods),
Minimum
, and convpow
, as well in method flat.mix
.
flat.LCD
returns an object of class UnivarLebDecDistribution
.
Peter Ruckdeschel [email protected]
UnivarLebDecDistribution-class
,
operators-methods
D1 <- as(Norm(),"UnivarLebDecDistribution") D2 <- as(Pois(1),"UnivarLebDecDistribution") D3 <- as(Binom(1,.4),"UnivarLebDecDistribution") flat.LCD(D1,D2,D3, mixCoeff = c(0.4,0.5,0.1))
D1 <- as(Norm(),"UnivarLebDecDistribution") D2 <- as(Pois(1),"UnivarLebDecDistribution") D3 <- as(Binom(1,.4),"UnivarLebDecDistribution") flat.LCD(D1,D2,D3, mixCoeff = c(0.4,0.5,0.1))
function to do get empirical density, cumulative distribution and quantile function from random numbers
flat.mix(object)
flat.mix(object)
object |
object of class |
flat.mix generates random numbers, by default
.
Replicates are assumed to be part of the discrete part, unique values to be
part of the a.c. part of the distribution. For the replicated ones,
we generate a discrete distribution by a call to DiscreteDistribution
.
The a.c. density is formed on the basis of
points using approxfun and density (applied to the unique values), by default
.
The cumulative distribution function is based on all random variables,
and, as well as the quantile function, is also created on the basis of points using
approxfun
and ecdf
. Of course, the results are usually not exact as they rely on random numbers.
flat.mix
returns an object of class UnivarLebDecDistribution
.
Use RtoDPQ
for absolutely continuous and RtoDPQ.d
for discrete distributions.
Peter Ruckdeschel [email protected]
UnivariateDistribution-class
,
density
,
approxfun
,
ecdf
D1 <- Norm() D2 <- Pois(1) D3 <- Binom(1,.4) D4 <- UnivarMixingDistribution(D1,D2,D3, mixCoeff = c(0.4,0.5,0.1), withSimplify = FALSE) D <- UnivarMixingDistribution(D1,D4,D1,D2, mixCoeff = c(0.4,0.3,0.1,0.2), withSimplify = FALSE) D D0<-flat.mix(D) D0 plot(D0)
D1 <- Norm() D2 <- Pois(1) D3 <- Binom(1,.4) D4 <- UnivarMixingDistribution(D1,D2,D3, mixCoeff = c(0.4,0.5,0.1), withSimplify = FALSE) D <- UnivarMixingDistribution(D1,D4,D1,D2, mixCoeff = c(0.4,0.3,0.1,0.2), withSimplify = FALSE) D D0<-flat.mix(D) D0 plot(D0)
The parameter of a F distribution, used by Fd-class
Objects can be created by calls of the form new("FParameter", df1, df2, ncp)
.
Usually an object of this class is not needed on its own, it is
generated automatically when an object of the class Fd is instantiated.
df1
Object of class "numeric"
: the degrees of freedom of the nominator of an F distribution
df2
Object of class "numeric"
: the degrees of freedom of the denominator of an F distribution
ncp
Object of class "numeric"
: the noncentrality parameter of an F distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "FParameter")
: initialize method
signature(object = "FParameter")
:
returns the slot df1 of the parameter of the distribution
signature(object = "FParameter")
:
modifies the slot df1 of the parameter of the distribution
signature(object = "FParameter")
:
returns the slot df2 of the parameter of the distribution
signature(object = "FParameter")
:
modifies the slot df2 of the parameter of the distribution
signature(object = "FParameter")
:
returns the slot ncp
of the parameter of the distribution
signature(object = "FParameter")
:
modifies the slot ncp
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("FParameter", df1 = 1, df2 = 1, ncp = 0) df2(W) # df2 of this distribution is 1. df2(W) <- 2 # df2 of this distribution is now 2.
W <- new("FParameter", df1 = 1, df2 = 1, ncp = 0) df2(W) # df2 of this distribution is 1. df2(W) <- 2 # df2 of this distribution is now 2.
The Gammad distribution with parameters shape
,
by default
= 1
, and scale
, by default
= 1
, has
density
for ,
and
.
The mean and variance are
and
. C.f.
rgamma
Objects can be created by calls of the form Gammad(scale, shape)
.
This object is a gamma distribution.
img
Object of class "Reals"
: The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "GammaParameter"
: the parameter of this distribution (scale and shape), declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rgamma)
d
Object of class "function"
: density function (calls function dgamma)
p
Object of class "function"
: cumulative function (calls function pgamma)
q
Object of class "function"
: inverse of the cumulative function (calls function qgamma)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "ExpOrGammaOrChisq"
, directly.
Class "AbscontDistribution"
, by class "ExpOrGammaOrChisq"
.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "UnivariateDistribution"
.
signature(.Object = "Gammad")
: initialize method
signature(object = "Gammad")
: returns the slot scale
of the parameter of the distribution
signature(object = "Gammad")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Gammad")
: returns the slot shape
of the parameter of the distribution
signature(object = "Gammad")
: modifies the slot shape
of the parameter of the distribution
signature(e1 = "Gammad", e2 = "Gammad")
:
For the Gamma distribution we use its closedness under convolutions.
signature(e1 = "Gammad", e2 = "numeric")
:
For the Gamma distribution we use its closedness under positive scaling transformations.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
GammaParameter-class
AbscontDistribution-class
Reals-class
rgamma
G <- Gammad(scale=1,shape=1) # G is a gamma distribution with scale=1 and shape=1. r(G)(1) # one random number generated from this distribution, e.g. 0.1304441 d(G)(1) # Density of this distribution is 0.3678794 for x=1. p(G)(1) # Probability that x<1 is 0.6321206. q(G)(.1) # Probability that x<0.1053605 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) scale(G) # scale of this distribution is 1. scale(G) <- 2 # scale of this distribution is now 2.
G <- Gammad(scale=1,shape=1) # G is a gamma distribution with scale=1 and shape=1. r(G)(1) # one random number generated from this distribution, e.g. 0.1304441 d(G)(1) # Density of this distribution is 0.3678794 for x=1. p(G)(1) # Probability that x<1 is 0.6321206. q(G)(.1) # Probability that x<0.1053605 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) scale(G) # scale of this distribution is 1. scale(G) <- 2 # scale of this distribution is now 2.
The parameter of a gamma distribution, used by Gammad
-class
Objects can be created by calls of the form new("GammaParameter", shape, scale)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Gammad
is instantiated.
shape
Object of class "numeric"
: the shape of a Gamma distribution
scale
Object of class "numeric"
: the scale of a Gamma distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "GammaParameter")
: initialize method
signature(object = "GammaParameter")
: returns the slot scale
of a parameter of a Gamma distribution
signature(object = "GammaParameter")
: modifies the slot scale
of a parameter of a Gamma
distribution
signature(object = "GammaParameter")
: returns the slot shape
of a parameter of a Gamma distribution
signature(object = "GammaParameter")
: modifies the slot shape
of a parameter of a Gamma
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("GammaParameter",scale=1,shape=1) shape(W) # shape of this distribution is 1. shape(W) <- 2 # shape of this distribution is now 2.
W <- new("GammaParameter",scale=1,shape=1) shape(W) # shape of this distribution is 1. shape(W) <- 2 # shape of this distribution is now 2.
[set]gaps-methods
gaps(object) gaps(object) gaps(object) <- value setgaps(object, ...) ## S4 method for signature 'AbscontDistribution' gaps(object) ## S4 method for signature 'AbscontDistribution' setgaps(object, exactq = 6, ngrid = 50000, ...)
gaps(object) gaps(object) gaps(object) <- value setgaps(object, ...) ## S4 method for signature 'AbscontDistribution' gaps(object) ## S4 method for signature 'AbscontDistribution' setgaps(object, exactq = 6, ngrid = 50000, ...)
object |
object of class |
... |
further arguments to be passed to |
value |
|
exactq |
density values smaller than
|
ngrid |
number of gridpoints at which the density is evaluated. |
signature(object = "AbscontDistribution")
: returns slot
gaps
of an absolutely continuous distribution
signature(object = "AbscontDistribution")
: tries to find
out the gaps (where d(object)
is approximately
0) and fills slot gaps
of object
correspondingly
signature(object = "UnivarMixingDistribution")
:
for each mixing component, if it has a slot gaps
, tries to find out the gaps
and fills slot gaps
of the component correspondingly, and,
subsequently merges all found gap-slots of the components to a gap-slot
for the object, using internal function .mergegaps2
.
signature(object = "AbscontDistribution")
: modifies slot
gaps
of an absolutely continuous distribution
The geometric distribution with prob
has density
for
C.f. rgeom
Objects can be created by calls of the form Geom(prob)
.
This object is a geometric distribution.
img
Object of class "Naturals"
:
The space of the image of this distribution has got dimension 1
and the name "Natural Space".
param
Object of class "NbinomParameter"
:
the parameter of this distribution (prob),
declared at its instantiation (size=1)
r
Object of class "function"
:
generates random numbers (calls function rgeom)
d
Object of class "function"
:
density function (calls function dgeom)
p
Object of class "function"
:
cumulative function (calls function pgeom)
q
Object of class "function"
:
inverse of the cumulative function (calls function qgeom).
The quantile is defined as the smallest value such that
, where
is the distribution function.
support
Object of class "numeric"
:
a (sorted) vector containing the support of the discrete density
function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "DiscreteDistribution"
, directly.
Class "Nbinom"
, directly.
Class "UnivariateDistribution"
, by class "DiscreteDistribution"
.
Class "Distribution"
, by class "DiscreteDistribution"
.
By means of a contains
argument in the class declaration, R “knows”
that a distribution object obj
of class "Geom"
also is a
negative Binomial distribution with parameters size = 1, prob = prob(obj)
signature(.Object = "Geom")
: initialize method
signature(object = "Geom")
:
returns the slot prob of the parameter of the distribution
signature(object = "Geom")
:
modifies the slot prob of the parameter of the distribution
Working with a computer, we use a finite interval as support which carries
at least mass 1-getdistrOption("TruncQuantile")
.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Nbinom-class
GeomParameter-class
DiscreteDistribution-class
Naturals-class
rgeom
G <- Geom(prob = 0.5) # G is a geometric distribution with prob = 0.5. r(G)(1) # one random number generated from this distribution, e.g. 0 d(G)(1) # Density of this distribution is 0.25 for x = 1. p(G)(1) # Probability that x<1 is 0.75. q(G)(.1) # x = 0 is the smallest value x such that p(G)(x) >= 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) prob(G) # prob of this distribution is 0.5. prob(G) <- 0.6 # prob of this distribution is now 0.6. as(G,"Nbinom") G+G+G
G <- Geom(prob = 0.5) # G is a geometric distribution with prob = 0.5. r(G)(1) # one random number generated from this distribution, e.g. 0 d(G)(1) # Density of this distribution is 0.25 for x = 1. p(G)(1) # Probability that x<1 is 0.75. q(G)(.1) # x = 0 is the smallest value x such that p(G)(x) >= 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) prob(G) # prob of this distribution is 0.5. prob(G) <- 0.6 # prob of this distribution is now 0.6. as(G,"Nbinom") G+G+G
a help function to get reasonable labels for distribution objects
getLabel(x, withnames = TRUE)
getLabel(x, withnames = TRUE)
x |
a distribution object |
withnames |
logical: are the parameters (if any) of |
The need for this helper function (external to our
plot
methods) was brought to our attention in a mail
by Kouros Owzar [email protected].
Peter Ruckdeschel [email protected]
## example due to Kouros Owzar: foo<- function(law,n, withnames = TRUE) { data.frame(muhat=mean(r(law)(n)),n=n,law= getLabel(law,withnames)) } ### a function that groups certain informations on ## created with distribution objects do.call("rbind",lapply(list(Exp(1),Norm(0,1),Weibull(1,1)),foo,n=100)) do.call("rbind",lapply(list(Exp(1),Norm(0,1),Weibull(1,1)),foo,n=100,FALSE))
## example due to Kouros Owzar: foo<- function(law,n, withnames = TRUE) { data.frame(muhat=mean(r(law)(n)),n=n,law= getLabel(law,withnames)) } ### a function that groups certain informations on ## created with distribution objects do.call("rbind",lapply(list(Exp(1),Norm(0,1),Weibull(1,1)),foo,n=100)) do.call("rbind",lapply(list(Exp(1),Norm(0,1),Weibull(1,1)),foo,n=100,FALSE))
getLow, getUp return lower and upper endpoint of a distribution —
truncated to lower/upper TruncQuantile
if infinite; in case of an object
of class "LatticeDistribution"
with infinite lattice length, we search
for the smallest/largest point in the lattice which is returned by succesive
halving of x=0.5
in q(object)(x, lower.tail)
for lower.tail
TRUE
resp. false
.
## S4 method for signature 'AbscontDistribution' getUp(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'DiscreteDistribution' getUp(object, ...) ## S4 method for signature 'LatticeDistribution' getUp(object, ...) ## S4 method for signature 'UnivarLebDecDistribution' getUp(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'UnivarMixingDistribution' getUp(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'AbscontDistribution' getLow(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'DiscreteDistribution' getLow(object, ...) ## S4 method for signature 'LatticeDistribution' getLow(object, ...) ## S4 method for signature 'UnivarLebDecDistribution' getLow(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'UnivarMixingDistribution' getLow(object, eps = getdistrOption("TruncQuantile"))
## S4 method for signature 'AbscontDistribution' getUp(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'DiscreteDistribution' getUp(object, ...) ## S4 method for signature 'LatticeDistribution' getUp(object, ...) ## S4 method for signature 'UnivarLebDecDistribution' getUp(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'UnivarMixingDistribution' getUp(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'AbscontDistribution' getLow(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'DiscreteDistribution' getLow(object, ...) ## S4 method for signature 'LatticeDistribution' getLow(object, ...) ## S4 method for signature 'UnivarLebDecDistribution' getLow(object, eps = getdistrOption("TruncQuantile")) ## S4 method for signature 'UnivarMixingDistribution' getLow(object, eps = getdistrOption("TruncQuantile"))
object |
a distribution object |
eps |
truncation point (numeric) |
... |
for convenience only; makes it possible to call |
getLow , getUp
|
a |
Peter Ruckdeschel [email protected]
Huberize-methods
Huberize(object, ...) ## S4 method for signature 'AcDcLcDistribution' Huberize(object,lower,upper, withSimplify = getdistrOption("simplifyD"))
Huberize(object, ...) ## S4 method for signature 'AcDcLcDistribution' Huberize(object,lower,upper, withSimplify = getdistrOption("simplifyD"))
object |
distribution object |
... |
further arguments for |
lower |
numeric; lower truncation point |
upper |
numeric; upper truncation point |
withSimplify |
logical; is result to be piped through a call to
|
the corresponding distribution of the truncated random variable
signature(object = "AcDcLcDistribution")
:
returns the unconditioned
distribution of min(upper,max(X,lower))
, if X
is
distributed according to object
;
the result is of class "UnivarLebDecDistribution"
in general.
Hub <- Huberize(Norm(),lower=-1,upper=2) Hub plot(Hub)
Hub <- Huberize(Norm(),lower=-1,upper=2) Hub plot(Hub)
The hypergeometric distribution is used for sampling without
replacement. The density of this distribution with parameters
m
, n
and k
(named ,
, and
, respectively in the reference below) is given by
for .
C.f.
rhyper
Objects can be created by calls of the form Hyper(m, n, k)
.
This object is a hypergeometric distribution.
img
Object of class "Naturals"
: The space of the image of this
distribution has got dimension 1 and the name "Natural Space".
param
Object of class "HyperParameter"
: the parameter of this distribution (m
, n
, k
),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rhyper
)
d
Object of class "function"
: density function (calls function dhyper
)
p
Object of class "function"
: cumulative function (calls function phyper
)
q
Object of class "function"
: inverse of the cumulative function (calls function qhyper
).
The -quantile is defined as the smallest value
such that
, where
is the cumulative function.
support
:Object of class "numeric"
: a (sorted) vector containing the support of the discrete
density function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "DiscreteDistribution"
, directly.
Class "UnivariateDistribution"
, by class "DiscreteDistribution"
.
Class "Distribution"
, by class "DiscreteDistribution"
.
signature(.Object = "Hyper")
: initialize method
signature(object = "Hyper")
: returns the slot m
of the parameter of the distribution
signature(object = "Hyper")
: modifies the slot m
of the parameter of the distribution
signature(object = "Hyper")
: returns the slot n
of the parameter of the distribution
signature(object = "Hyper")
: modifies the slot n
of the parameter of the distribution
signature(object = "Hyper")
: returns the slot k
of the parameter of the distribution
signature(object = "Hyper")
: modifies the slot k
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
HyperParameter-class
DiscreteDistribution-class
Naturals-class
rhyper
H <- Hyper(m=3,n=3,k=3) # H is a hypergeometric distribution with m=3,n=3,k=3. r(H)(1) # one random number generated from this distribution, e.g. 2 d(H)(1) # Density of this distribution is 0.45 for x=1. p(H)(1) # Probability that x<1 is 0.5. q(H)(.1) # x=1 is the smallest value x such that p(H)(x)>=0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) m(H) # m of this distribution is 3. m(H) <- 2 # m of this distribution is now 2.
H <- Hyper(m=3,n=3,k=3) # H is a hypergeometric distribution with m=3,n=3,k=3. r(H)(1) # one random number generated from this distribution, e.g. 2 d(H)(1) # Density of this distribution is 0.45 for x=1. p(H)(1) # Probability that x<1 is 0.5. q(H)(.1) # x=1 is the smallest value x such that p(H)(x)>=0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) m(H) # m of this distribution is 3. m(H) <- 2 # m of this distribution is now 2.
The parameter of a hypergeometric distribution, used by Hyper
-class
Objects can be created by calls of the form new("HyperParameter", k, m, n)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Hyper
is instantiated.
k
Object of class "numeric"
: k of a hypergeometric distribution
m
Object of class "numeric"
: m of a hypergeometric distribution
n
Object of class "numeric"
: n of a hypergeometric distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "HyperParameter")
: initialize method
signature(object = "HyperParameter")
: returns the slot k
of the parameter of the distribution
signature(object = "HyperParameter")
: modifies the slot k
of the parameter of the distribution
signature(object = "HyperParameter")
: returns the slot m
of the parameter of the distribution
signature(object = "HyperParameter")
: modifies the slot m
of the parameter of the distribution
signature(object = "HyperParameter")
: returns the slot n
of the parameter of the distribution
signature(object = "HyperParameter")
: modifies the slot n
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("HyperParameter",k=3, m=3, n=3) m(W) # m of this distribution is 3. m(W) <- 2 # m of this distribution is now 2.
W <- new("HyperParameter",k=3, m=3, n=3) m(W) # m of this distribution is 3. m(W) <- 2 # m of this distribution is now 2.
Function igamma
is a numerical inverse of digamma
.
igamma(v)
igamma(v)
v |
a numeric in the range [-100000,18] |
igamma
is vectorized; it is won
by spline inversion of a grid; it works well for range
[digamma(1e-5);digamma(1e8)] or [-100000,18].
igamma(x)
is a value u
such that digamma(u
is approximately x
.
Peter Ruckdeschel [email protected]
digamma
igamma(digamma(c(1e-4,1,20,1e8)))
igamma(digamma(c(1e-4,1,20,1e8)))
img-methods
signature(object = "Distribution")
: returns the image space / domain of the distribution
k-methods
signature(object = "HyperParameter")
: returns the slot k
of the parameter of the distribution
signature(object = "HyperParameter")
: modifies the slot k
of the parameter of the distribution
signature(object = "Hyper")
: returns the slot k
of the parameter of the distribution
signature(object = "Hyper")
: modifies the slot k
of the parameter of the distribution
lambda-methods
signature(object = "PoisParameter")
: returns the slot lambda
of the parameter of the distribution
signature(object = "PoisParameter")
: modifies the slot lambda
of the parameter of the distribution
signature(object = "Pois")
: returns the slot lambda
of the parameter of the distribution
signature(object = "Pois")
: modifies the slot lambda
of the parameter of the distribution
Class Lattice
formalizes an affine linearly generated grid
of (support) points pivot + (0:(Length-1)) * width
;
this is used for subclass LatticeDistribution
of class
DiscreteDistribution
which in addition to the latter contains a slot
lattice
of class Lattice
.
Lattice(pivot = 0, width = 1, Length = 2, name = "a lattice")
Lattice(pivot = 0, width = 1, Length = 2, name = "a lattice")
pivot |
the (finite) utmost left or right value of the lattice |
width |
the (finite) grid-width; if negative the lattice is expanded to the left, else to the right |
Length |
the (possibly infinite) length of the lattice |
name |
the (possibly empty) name of the lattice
(inherited from class |
Objects may be generated by calling the generating function Lattice
.
pivot
Object of class "numeric"
:
— the pivot of the lattice; must be of length 1
width
Object of class "numeric"
:
— the width of the lattice; must be of length 1 and
must not be 0
Length
Object of class "numeric"
:
— the width of the lattice; must be an integer > 0
of length 1
name
Object of class "character"
:
the name of the space, by default = "a lattice"
Class "rSpace"
, directly.
signature(.Object = "Lattice")
:
returns the 'pivot'
slot
signature(.Object = "Lattice")
:
modifies the 'pivot'
slot
signature(.Object = "Lattice")
:
returns the 'width'
slot
signature(.Object = "Lattice")
:
modifies the 'width'
slot
signature(.Object = "Lattice")
:
returns the 'Length'
slot
signature(.Object = "Lattice")
:
modifies the 'Length'
slot
Peter Ruckdeschel [email protected]
rSpace-class
LatticeDistribution-class
L <- Lattice(pivot = 0, width = 1, Length = Inf, name = "the Naturals") name(L) pivot(L) <- 1 ### now starting from 1
L <- Lattice(pivot = 0, width = 1, Length = Inf, name = "the Naturals") name(L) pivot(L) <- 1 ### now starting from 1
The LatticeDistribution
-class is the mother-class of the
classes Binom
, Dirac
, Geom
, Hyper
, Nbinom
and
Poisson
. It formalizes a distribution on a regular affine
linear lattice.
LatticeDistribution(lattice = NULL, supp = NULL, prob = NULL, .withArith = FALSE, .withSim = FALSE, DiscreteDistribution = NULL, check = TRUE, Symmetry = NoSymmetry())
LatticeDistribution(lattice = NULL, supp = NULL, prob = NULL, .withArith = FALSE, .withSim = FALSE, DiscreteDistribution = NULL, check = TRUE, Symmetry = NoSymmetry())
DiscreteDistribution |
an object of class |
lattice |
lattice (of class |
supp |
numeric vector which forms the support of the discrete distribution. |
prob |
vector of probability weights for the
elements of |
.withArith |
normally not set by the user, but if determining the entries
|
.withSim |
normally not set by the user, but if determining the entries
|
check |
logical: if |
Symmetry |
you may help R in calculations if you tell it whether
the distribution is non-symmetric (default) or symmetric with respect
to a center; in this case use |
Typical usages are
LatticeDistribution(DiscreteDistribution) LatticeDistribution(lattice, DiscreteDistribution) LatticeDistribution(lattice, supp, prob, .withArith, .withSim, check = FALSE) LatticeDistribution(lattice, supp, prob) LatticeDistribution(supp)
For the generating function LatticeDistribution()
, the arguments
are processed in the following order:
Arguments .withSim
and .withArith
are used in any case.
If there is an argument DiscreteDistribution
(of the respective class),
all its slots (except for .withSim
and .withArith
)
will be used for filling the slots of the object of class
LatticeDistribution()
/AffLinLatticeDistribution()
.
If in addition, there is an argument lattice
of class Lattice
,
it will be checked for consistency
with argument DiscreteDistribution
and if oK will be used for slot
lattice of the object of class
LatticeDistribution()
/AffLinLatticeDistribution()
. In case
there is no lattice
argument, slot lattice
will be constructed
from slot support
from argument DiscreteDistribution
.
If there is no argument DiscreteDistribution
, but there are arguments
supp
and lattice
(the latter of class Lattice
) then
these are checked for consistency and if oK, generating function
DiscreteDistribution()
is called with arguments supp
,
prob
, .withArith
, and .withSim
to produce an object
of class DiscreteDistribution
the slots of which will be used for the
filling the slots of the object of class
LatticeDistribution()
/AffLinLatticeDistribution()
.
If in this case, argument prob
is not given explicitely, all elements
in supp
are equally weighted.
If there is no argument DiscreteDistribution
, but there is an argument
lattice
of class Lattice
(but no argument slot
) then
if Length(lattice)
is finite, a corresponding support vector supp
is generated from argument lattice
and generating function
DiscreteDistribution()
is called with arguments supp
,
prob
, .withArith
, and .withSim
to produce an object
of class DiscreteDistribution
the slots of which will be used for the
filling the slots of the object of class LatticeDistribution()
.
If in the same situation Length(lattice)
is not finite, a finite length
for the support vector is extracted from argument prob
and after
generating supp
one procedes as in the finite Length(lattice)
case.
If there is no argument DiscreteDistribution
and no argument
lattice
of class Lattice
but an argument supp
then
it will be checked if supp
makes for a lattice, and if so,
DiscreteDistribution()
is called with arguments supp
,
prob
, .withArith
, and .withSim
to produce an object
of class DiscreteDistribution
the slots of which will be used for the
filling the slots of the object of class LatticeDistribution()
. The
corresponding lattice
-slot will be filled with information from
argument supp
.
The price for this flexibility of arguments, LatticeDistribution()
may
be called with, is that you should call LatticeDistribution()
with
named arguments only.
Note that internally we suppress lattice points from the support where
the probability is 0.
The usual way to generate objects of class LatticeDistribution
is to call
the generating function LatticeDistribution()
(see details).
Somewhat more flexible, but also proner to inconsistencies is a call to
new("LatticeDistribution")
, where you may explicitly specify random
number generator, (counting) density, cumulative distribution and quantile
functions. For conveniance, in this call to new("LatticeDistribution")
,
an additional possibility is to only specify the random number generator. The
function RtoDPQ.d
then approximates the three remaining slots d
,
p
and q
by random sampling.
Working with a computer, we use a finite interval as support which
carries at least mass 1-getdistrOption("TruncQuantile")
.
Peter Ruckdeschel [email protected]
Parameter-class
Lattice-class
LatticeDistribution-class
Reals-class
RtoDPQ.d
LatticeDistribution(DiscreteDistribution = DiscreteDistribution(supp = c(4,3,2), prob=c(0.3,0.1,0.6))) LatticeDistribution(supp = c(4,3,2))
LatticeDistribution(DiscreteDistribution = DiscreteDistribution(supp = c(4,3,2), prob=c(0.3,0.1,0.6))) LatticeDistribution(supp = c(4,3,2))
The LatticeDistribution
-class is the mother-class of the
classes Binom
, Dirac
, Geom
, Hyper
, Nbinom
and
Poisson
. It formalizes a distribution on a regular affine
linear lattice.
The usual way to generate objects of class LatticeDistribution
is to call
the generating function LatticeDistribution
.
Somewhat more flexible, but also proner to inconsistencies is a call to
new("LatticeDistribution")
, where you may explicitly specify random
number generator, (counting) density, cumulative distribution and quantile
functions. For conveniance, in this call to new("LatticeDistribution")
,
an additional possibility is to only specify the random number generator. The
function RtoDPQ.d
then approximates the three remaining slots d
,
p
and q
by random sampling.
img
Object of class "Reals"
: the space of the image
of this distribution which has dimension 1 and the name "Real Space"
param
Object of class "Parameter"
: the parameter of
this distribution, having only the slot name
"Parameter of a discrete distribution"
r
Object of class "function"
:
generates random numbers
d
Object of class "function"
:
(counting) density/probability function
p
Object of class "function"
:
cumulative distribution function
q
Object of class "function"
:
quantile function
support
Object of class "numeric"
: a (sorted) vector
containing the support of the discrete
density function
lattice
Object of class "Lattice"
: the lattice
generating the support.
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "UnivariateDistribution"
, directly.
Class "Distribution"
, by class "UnivariateDistribution"
.
initialize
signature(.Object = "LatticeDistribution")
:
initialize method
signature(e1 = "LatticeDistribution")
:
application of ‘-’ to this lattice distribution
signature(e1 = "LatticeDistribution", e2 = "numeric")
:
multiplication of this lattice distribution
by an object of class ‘numeric’
signature(e1 = "LatticeDistribution", e2 = "numeric")
:
division of this lattice distribution by an object of class ‘numeric’
signature(e1 = "LatticeDistribution", e2 = "numeric")
:
addition of this lattice distribution to an object of class ‘numeric’
signature(e1 = "LatticeDistribution", e2 = "numeric")
:
subtraction of an object of class ‘numeric’ from this lattice
distribution
signature(e1 = "numeric", e2 = "LatticeDistribution")
:
multiplication of this lattice distribution by an object of class ‘numeric’
signature(e1 = "numeric", e2 = "LatticeDistribution")
:
addition of this lattice distribution to an object of class ‘numeric’
signature(e1 = "numeric", e2 = "LatticeDistribution")
:
subtraction of this lattice distribution from an object of class ‘numeric’
signature(e1 = "LatticeDistribution",
e2 = "LatticeDistribution")
: Convolution of two lattice distributions.
Slots p, d and q are approximated by grids.
signature(e1 = "LatticeDistribution",
e2 = "LatticeDistribution")
: Convolution of two lattice
distributions. The slots p, d and q are approximated by grids.
sqrt
signature(x = "LatticeDistribution")
: exact
image distribution of sqrt(x)
.
lattice
accessor method to the corresponding slot.
coerce
signature(from = "LatticeDistribution",
to = "DiscreteDistribution")
: coerces an object from
"LatticeDistribution"
to "DiscreteDistribution"
thereby cancelling out support points with probability 0.
To enhance accuracy of several functionals on distributions,
mainly from package distrEx, there is an internally used
(but exported) subclass "AffLinLatticeDistribution"
which has extra slots
a
, b
(both of class "numeric"
), and X0
(of class "LatticeDistribution"
), to capture the fact
that the object has the same distribution as a * X0 + b
. This is
the class of the return value of methods
signature(e1 = "LatticeDistribution")
signature(e1 = "LatticeDistribution", e2 = "numeric")
signature(e1 = "LatticeDistribution", e2 = "numeric")
signature(e1 = "LatticeDistribution", e2 = "numeric")
signature(e1 = "LatticeDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "LatticeDistribution")
signature(e1 = "numeric", e2 = "LatticeDistribution")
signature(e1 = "numeric", e2 = "LatticeDistribution")
signature(e1 = "AffLinLatticeDistribution")
signature(e1 = "AffLinLatticeDistribution", e2 = "numeric")
signature(e1 = "AffLinLatticeDistribution", e2 = "numeric")
signature(e1 = "AffLinLatticeDistribution", e2 = "numeric")
signature(e1 = "AffLinLatticeDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "AffLinLatticeDistribution")
signature(e1 = "numeric", e2 = "AffLinLatticeDistribution")
signature(e1 = "numeric", e2 = "AffLinLatticeDistribution")
There is also an explicit coerce
-method from class
"AffLinLatticeDistribution"
to class "AffLinDiscreteDistribution"
which cancels out support points with probability 0.
Working with a computer, we use a finite interval as support which
carries at least mass 1-getdistrOption("TruncQuantile")
.
Peter Ruckdeschel [email protected]
LatticeDistribution
Parameter-class
Lattice-class
UnivariateDistribution-class
DiscreteDistribution-class
Binom-class
Dirac-class
Geom-class
Hyper-class
Nbinom-class
Pois-class
AbscontDistribution-class
Reals-class
RtoDPQ.d
B <- Binom(prob = 0.1,size = 10) # B is a Binomial distribution w/ prob=0.1 and size=10. P <- Pois(lambda = 1) # P is a Poisson distribution with lambda = 1. D1 <- B+1 # a new Lattice distributions with exact slots d, p, q D2 <- D1*3 # a new Lattice distributions with exact slots d, p, q D3 <- B+P # a new Lattice distributions with approximated slots d, p, q D4 <- D1+P # a new Lattice distributions with approximated slots d, p, q support(D4) # the (approximated) support of this distribution is 1, 2, ..., 21 r(D4)(1) # one random number generated from this distribution, e.g. 4 d(D4)(1) # The (approximated) density for x=1 is 0.1282716. p(D4)(1) # The (approximated) probability that x<=1 is 0.1282716. q(D4)(.5) # The (approximated) 50 percent quantile is 3. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.)
B <- Binom(prob = 0.1,size = 10) # B is a Binomial distribution w/ prob=0.1 and size=10. P <- Pois(lambda = 1) # P is a Poisson distribution with lambda = 1. D1 <- B+1 # a new Lattice distributions with exact slots d, p, q D2 <- D1*3 # a new Lattice distributions with exact slots d, p, q D3 <- B+P # a new Lattice distributions with approximated slots d, p, q D4 <- D1+P # a new Lattice distributions with approximated slots d, p, q support(D4) # the (approximated) support of this distribution is 1, 2, ..., 21 r(D4)(1) # one random number generated from this distribution, e.g. 4 d(D4)(1) # The (approximated) density for x=1 is 0.1282716. p(D4)(1) # The (approximated) probability that x<=1 is 0.1282716. q(D4)(.5) # The (approximated) 50 percent quantile is 3. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.)
Length-methods
signature(object = "Lattice")
: returns the slot Length of the lattice
signature(object = "Lattice")
: modifies the slot Length of the lattice
signature(object = "LatticeDistribution")
: returns the slot Length of the lattice slot of the distribution
signature(object = "LatticeDistribution")
: modifies the slot Length of the lattice slot of the distribution
liesIn-methods
signature(object = "EuclideanSpace", x =
"numeric")
:
Does a particular vector lie in this space or not?
signature(object = "Naturals", x =
"numeric")
:
Does a particular vector only contain naturals?
The function tests if x
lies in the support of the
distribution object
.
liesInSupport(object, x, ...) ## S4 method for signature 'UnivarLebDecDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'UnivarMixingDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'LatticeDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'DiscreteDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'AbscontDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'Distribution,matrix' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'ExpOrGammaOrChisq,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Lnorm,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Fd,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Norm,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'DExp,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Cauchy,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Td,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Logis,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Weibull,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Unif,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Beta,numeric' liesInSupport(object,x, checkFin = TRUE)
liesInSupport(object, x, ...) ## S4 method for signature 'UnivarLebDecDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'UnivarMixingDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'LatticeDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'DiscreteDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'AbscontDistribution,numeric' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'Distribution,matrix' liesInSupport(object,x, checkFin = FALSE) ## S4 method for signature 'ExpOrGammaOrChisq,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Lnorm,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Fd,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Norm,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'DExp,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Cauchy,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Td,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Logis,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Weibull,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Unif,numeric' liesInSupport(object,x, checkFin = TRUE) ## S4 method for signature 'Beta,numeric' liesInSupport(object,x, checkFin = TRUE)
object |
object of class |
x |
numeric vector or matrix |
checkFin |
logical: in case |
... |
used for specific arguments to particular methods. |
logical vector
We return a logical vector of the same length as x
with TRUE
when x
lies in the support of object
.
As support we use the value of support(object)
, so this
is possibly cut to relevant quantile ranges.
In case checkFin
is TRUE
, in addition, we flag those coordinates
to TRUE
where x < min(support(object))
if
is.na([email protected][1])
or [email protected][1]==FALSE
or q.l(object)(0)==-Inf
, and similarly, where
x > max(support(object))
if is.na([email protected][2])
or [email protected][2]==FALSE
or q.l(object)(1)==Inf
.
In addition we flag those coordinates to TRUE
where
q.l(object)(0)<=x<min(support(object))
if
[email protected][1]==TRUE
and, similarly, where
q.l(object)(1)>=x>max(support(object))
if
[email protected][2]==TRUE
.
Argument x
is cast to vector and then the respective
liesInSupport
method for vectors is called. The method throws an
arror when the dispatch mechanism does not find a suitable, applicable
respective vector-method.
We return a logical vector of the same length as x
with TRUE
where q.l(object)(0)<=x<=q.l(object)(1)
(and replace the boundary
values by q.l(object)(10*.Machine$double.eps)
resp.
q.l(object)(1-10*.Machine$double.eps)
once the return values
for 0
or 1
return are NaN
.
We return a logical vector of the same length as x
with TRUE
when x
lies in the support of object
.
As support we use the value of support(object)
, so this
is possibly cut to relevant quantile ranges.
In case checkFin
is TRUE
, we instead use the lattice
information: We check whether all values
(x-pivot(lattice(object))/width(lattice(object))
are non-negative
integers and are non larger than Length(lattice(object))-1
.
In addition, we flag those coordinates to TRUE
where
x < min(support(object))
if
is.na([email protected][1])
or [email protected][1]==FALSE
,
and similarly, where x > max(support(object))
if
is.na([email protected][2])
or [email protected][2]==FALSE
.
We split up object
into discrete and absolutely continuous
part and for each of them apply liesInSupport
separately;
the two return values are combined by a coponentwise logical |
.
We first cast object
to UnivarLebDecDistribution
by flat.mix
and then apply the respective method.
Matthias Kohl [email protected] and Peter Ruckdeschel [email protected]
liesInSupport(Exp(1), rnorm(10)) # note x <- rpois(10, lambda = 10) liesInSupport(Pois(1), x) # better liesInSupport(Pois(1), x, checkFin = TRUE) liesInSupport(Pois(1), 1000*x, checkFin = TRUE) liesInSupport(-10*Pois(1), -10*x+1, checkFin = TRUE) xs = c(1000*x,runif(10)) D <- UnivarMixingDistribution(Pois(1),Unif()) liesInSupport(D, xs)
liesInSupport(Exp(1), rnorm(10)) # note x <- rpois(10, lambda = 10) liesInSupport(Pois(1), x) # better liesInSupport(Pois(1), x, checkFin = TRUE) liesInSupport(Pois(1), 1000*x, checkFin = TRUE) liesInSupport(-10*Pois(1), -10*x+1, checkFin = TRUE) xs = c(1000*x,runif(10)) D <- UnivarMixingDistribution(Pois(1),Unif()) liesInSupport(D, xs)
The log normal distribution has density
where , by default
, and
, by default
, are the mean and standard
deviation of the logarithm.
C.f.
rlnorm
Objects can be created by calls of the form Lnorm(meanlog, sdlog)
.
This object is a log normal distribution.
img
Object of class "Reals"
: The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "LnormParameter"
: the parameter of this distribution (meanlog and sdlog),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rlnorm
)
d
Object of class "function"
: density function (calls function dlnorm
)
p
Object of class "function"
: cumulative function (calls function plnorm
)
q
Object of class "function"
: inverse of the cumulative function (calls function qlnorm
)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Lnorm")
: initialize method
signature(object = "Lnorm")
: returns the slot meanlog
of the parameter of the distribution
signature(object = "Lnorm")
: modifies the slot meanlog
of the parameter of the distribution
signature(object = "Lnorm")
: returns the slot sdlog
of the parameter of the distribution
signature(object = "Lnorm")
: modifies the slot sdlog
of the parameter of the distribution
signature(e1 = "Lnorm", e2 = "numeric")
:
For the Lognormal distribution we use its closedness under positive scaling transformations.
The mean is , and the variance
and
hence the coefficient of variation is
which is
approximately
when that is small (e.g.,
).
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
LnormParameter-class
AbscontDistribution-class
Reals-class
rlnorm
L <- Lnorm(meanlog=1,sdlog=1) # L is a lnorm distribution with mean=1 and sd=1. r(L)(1) # one random number generated from this distribution, e.g. 3.608011 d(L)(1) # Density of this distribution is 0.2419707 for x=1. p(L)(1) # Probability that x<1 is 0.1586553. q(L)(.1) # Probability that x<0.754612 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) meanlog(L) # meanlog of this distribution is 1. meanlog(L) <- 2 # meanlog of this distribution is now 2.
L <- Lnorm(meanlog=1,sdlog=1) # L is a lnorm distribution with mean=1 and sd=1. r(L)(1) # one random number generated from this distribution, e.g. 3.608011 d(L)(1) # Density of this distribution is 0.2419707 for x=1. p(L)(1) # Probability that x<1 is 0.1586553. q(L)(.1) # Probability that x<0.754612 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) meanlog(L) # meanlog of this distribution is 1. meanlog(L) <- 2 # meanlog of this distribution is now 2.
The parameter of a log normal distribution, used by Lnorm-class
Objects can be created by calls of the form new("LnormParameter", meanlog, sdlog)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Lnorm
is instantiated.
meanlog
Object of class "numeric"
: the mean of a log normal distribution
sdlog
Object of class "numeric"
: the sd of a log normal distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "LnormParameter")
: initialize method
signature(object = "LnormParameter")
: returns the slot sdlog of the parameter of the distribution
signature(object = "LnormParameter")
: modifies the slot sdlog of the parameter of the
distribution
signature(object = "LnormParameter")
: returns the slot meanlog of the parameter of the
distribution
signature(object = "LnormParameter")
: modifies the slot meanlog of the parameter of the
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("LnormParameter",sdlog=1,meanlog=0) meanlog(W) # meanlog of this distribution is 0. meanlog(W) <- 2 # meanlog of this distribution is now 2.
W <- new("LnormParameter",sdlog=1,meanlog=0) meanlog(W) # meanlog of this distribution is 0. meanlog(W) <- 2 # meanlog of this distribution is now 2.
location-methods
signature(object = "LogisParameter")
: returns the slot location
of the parameter of the distribution
signature(object = "LogisParameter")
: modifies the slot location
of the parameter of the
distribution
signature(object = "Logis")
: returns the slot location
of the parameter of the distribution
signature(object = "Logis")
: modifies the slot location
of the parameter of the distribution
signature(object = "CauchyParameter")
: returns the slot location
of the parameter of the distribution
signature(object = "CauchyParameter")
: modifies the slot location
of the parameter of the
distribution
signature(object = "Cauchy")
: returns the slot location
of the parameter of the distribution
signature(object = "Cauchy")
: modifies the slot location
of the parameter of the distribution
signature(object = "DiracParameter")
: returns the slot location
of the parameter of the distribution
signature(object = "DiracParameter")
: modifies the slot location
of the parameter of the
distribution
signature(object = "Dirac")
: returns the slot location
of the parameter of the distribution
signature(object = "Dirac")
: modifies the slot location
of the parameter of the distribution
The Logistic distribution with location
,
by default
= 0
, and scale
, by default
= 1
,
has distribution function
and density
It is a long-tailed distribution with mean and variance
. C.f.
rlogis
Objects can be created by calls of the form Logis(location, scale)
.
This object is a logistic distribution.
img
Object of class "Reals"
: The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "LogisParameter"
: the parameter of this distribution (location and scale),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rlogis)
d
Object of class "function"
: density function (calls function dlogis)
p
Object of class "function"
: cumulative function (calls function plogis)
q
Object of class "function"
: inverse of the cumulative function (calls function qlogis)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Logis")
: initialize method
signature(object = "Logis")
: returns the slot location
of the parameter of the distribution
signature(object = "Logis")
: modifies the slot location
of the parameter of the distribution
signature(object = "Logis")
: returns the slot scale
of the parameter of the distribution
signature(object = "Logis")
: modifies the slot scale
of the parameter of the distribution
signature(e1 = "Logis", e2 = "numeric")
signature(e1 = "Logis", e2 = "numeric")
:
For the logistic location scale family we use its closedness under affine linear transformations.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
LogisParameter-class
AbscontDistribution-class
Reals-class
rlogis
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. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) location(L) # location of this distribution is 1. location(L) <- 2 # location of this distribution is now 2.
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. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) location(L) # location of this distribution is 1. location(L) <- 2 # location of this distribution is now 2.
The parameter of a logistic distribution, used by Logis
-class
Objects can be created by calls of the form new("LogisParameter", scale, location)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class
Logis
is instantiated.
scale
Object of class "numeric"
: the scale of a logistic distribution
location
Object of class "numeric"
: the location of a logistic distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "LogisParameter")
: initialize method
signature(object = "LogisParameter")
: returns the slot location
of the parameter of the
distribution
signature(object = "LogisParameter")
: modifies the slot location
of the parameter of the
distribution
signature(object = "LogisParameter")
: returns the slot scale
of the parameter of the distribution
signature(object = "LogisParameter")
: modifies the slot scale
of the parameter of the
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("LogisParameter",location=0,scale=1) scale(W) # scale of this distribution is 1. scale(W) <- 2 # scale of this distribution is now 2.
W <- new("LogisParameter",location=0,scale=1) scale(W) # scale of this distribution is 1. scale(W) <- 2 # scale of this distribution is now 2.
m-methods
signature(object = "HyperParameter")
: returns the slot m of the parameter of the distribution
signature(object = "HyperParameter")
: modifies the slot m of the parameter of the distribution
signature(object = "Hyper")
: returns the slot m of the parameter of the distribution
signature(object = "Hyper")
: modifies the slot m of the parameter of the distribution
Transforms an object of "UnivariateDistribution"
to
an object of class "makeAbscontDistribution"
.
makeAbscontDistribution(object, gaps = NULL, param = NULL, img = NULL, withgaps = getdistrOption("withgaps"), ngrid = getdistrOption("DefaultNrGridPoints"), ep = getdistrOption("TruncQuantile"))
makeAbscontDistribution(object, gaps = NULL, param = NULL, img = NULL, withgaps = getdistrOption("withgaps"), ngrid = getdistrOption("DefaultNrGridPoints"), ep = getdistrOption("TruncQuantile"))
object |
Objects of class |
gaps |
slot gaps (of class |
param |
parameter (of class |
img |
image range of the distribution (of class |
withgaps |
logical; shall gaps be reconstructed empirically? |
ngrid |
number of gridpoints |
ep |
tolerance epsilon |
takes slot p
of object
and then generates an
"AbscontDistribution"
object using generating function
AbscontDistribution
.
Peter Ruckdeschel [email protected]
Hu <- Huberize(Norm(), -2,1) Hu plot(Hu) Hu0 <- makeAbscontDistribution(Hu) Hu0 plot(Hu0)
Hu <- Huberize(Norm(), -2,1) Hu plot(Hu) Hu0 <- makeAbscontDistribution(Hu) Hu0 plot(Hu0)
Math-methods provide automatical generation of image distributions
for random variables transformed by functions from group
Math
signature(x = "AbscontDistribution")
: application of a
mathematical function from group Math
, e.g.
sin
or exp
(including
log, log10, gamma, lgamma, digamma
), to this
absolutely continouos distribution
signature(x = "DiscreteDistribution")
: application of a
mathematical function, e.g. sin or exp (including
log, log10, gamma, lgamma, digamma
), to this
discrete distribution
signature(x = "UnivarLebDecDistribution")
: application of a
mathematical function from group Math
, e.g.
sin
or exp
(including
log, log10, gamma, lgamma
), to this
Lebesgue decomposed distribution
signature(x = "UnivarLebDecDistribution")
: application of a
mathematical function from group Math
, e.g.
sin
or exp
(including
log, log10, gamma, lgamma
), to this
distribution of class "AcDcLcDistribution"
signature(x = "AbscontDistribution")
: application of
function abs
to this absolutely continouos distribution;
(exactly)
signature(x = "DiscreteDistribution")
: application of
function abs
to this discrete distribution;
(exactly)
signature(x = "AbscontDistribution")
: application of
function abs
to this absolutely continouos distribution;
(exactly)
signature(x = "DiscreteDistribution")
: application of
function abs
to this discrete continouos distribution;
(exactly)
signature(x = "AbscontDistribution")
: application of
function exp
to this absolutely continouos distribution;
(exactly)
signature(x = "DiscreteDistribution")
: application of
function exp
to this discrete distribution;
(exactly)
signature(x = "AbscontDistribution")
: application of
function log
to this absolutely continouos distribution;
(exactly for R-version >2.5.1
)
signature(x = "DiscreteDistribution")
: application of
function log
to this discrete distribution;
(exactly for R-version >2.5.1
)
Max-methods
signature(object = "UnifParameter")
: returns the slot Max
of the parameter of the distribution
signature(object = "UnifParameter")
: modifies the slot Max
of the parameter of the distribution
signature(object = "Unif")
: returns the slot Max
of the parameter of the distribution
signature(object = "Unif")
: modifies the slot Max
of the parameter of the distribution
mean-methods
signature(object = "NormParameter")
: returns the slot mean of the parameter of the distribution
signature(object = "NormParameter")
: modifies the slot mean of the parameter of the distribution
signature(object = "Norm")
: returns the slot mean of the parameter of the distribution
signature(object = "Norm")
: modifies the slot mean of the parameter of the distribution
meanlog-methods
signature(object = "LnormParameter")
: returns the slot meanlog of the parameter of the distribution
signature(object = "LnormParameter")
: modifies the slot meanlog of the parameter of the distribution
signature(object = "Lnorm")
: returns the slot meanlog of the parameter of the distribution
signature(object = "Lnorm")
: modifies the slot meanlog of the parameter of the distribution
Min-methods
signature(object = "UnifParameter")
: returns the slot Min
of the parameter of the distribution
signature(object = "UnifParameter")
: modifies the slot Min
of the parameter of the distribution
signature(object = "Unif")
: returns the slot Min
of the parameter of the distribution
signature(object = "Unif")
: modifies the slot Min
of the parameter of the distribution
Minimum and Maximum-methods
Minimum(e1, e2, ...) Maximum(e1, e2, ...) ## S4 method for signature 'AbscontDistribution,AbscontDistribution' Minimum(e1,e2, ...) ## S4 method for signature 'DiscreteDistribution,DiscreteDistribution' Minimum(e1,e2, ...) ## S4 method for signature 'AbscontDistribution,Dirac' Minimum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AcDcLcDistribution,AcDcLcDistribution' Minimum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AcDcLcDistribution,AcDcLcDistribution' Maximum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AbscontDistribution,numeric' Minimum(e1,e2, ...) ## S4 method for signature 'DiscreteDistribution,numeric' Minimum(e1,e2, ...) ## S4 method for signature 'AcDcLcDistribution,numeric' Minimum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AcDcLcDistribution,numeric' Maximum(e1,e2, withSimplify = getdistrOption("simplifyD"))
Minimum(e1, e2, ...) Maximum(e1, e2, ...) ## S4 method for signature 'AbscontDistribution,AbscontDistribution' Minimum(e1,e2, ...) ## S4 method for signature 'DiscreteDistribution,DiscreteDistribution' Minimum(e1,e2, ...) ## S4 method for signature 'AbscontDistribution,Dirac' Minimum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AcDcLcDistribution,AcDcLcDistribution' Minimum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AcDcLcDistribution,AcDcLcDistribution' Maximum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AbscontDistribution,numeric' Minimum(e1,e2, ...) ## S4 method for signature 'DiscreteDistribution,numeric' Minimum(e1,e2, ...) ## S4 method for signature 'AcDcLcDistribution,numeric' Minimum(e1,e2, withSimplify = getdistrOption("simplifyD")) ## S4 method for signature 'AcDcLcDistribution,numeric' Maximum(e1,e2, withSimplify = getdistrOption("simplifyD"))
e1 |
distribution object |
e2 |
distribution object or numeric |
... |
further arguments (to be able to call various methods with the same arguments |
withSimplify |
logical; is result to be piped through a call to
|
the corresponding distribution of the minimum / maximum
signature(e1 = "AbscontDistribution", e2 = "AbscontDistribution")
:
returns the distribution of min(X1,X2)
, if X1
,X2
are independent
and distributed according to e1
and e2
respectively;
the result is again of class "AbscontDistribution"
signature(e1 = "DiscreteDistribution", e2 = "DiscreteDistribution")
:
returns the distribution of min(X1,X2)
, if X1
,X2
are independent
and distributed according to e1
and e2
respectively;
the result is again of class "DiscreteDistribution"
signature(e1 = "AbscontDistribution", e2 = "Dirac")
:
returns the distribution of min(X1,X2)
, if X1
,X2
are
distributed according to e1
and e2
respectively;
the result is of class "UnivarLebDecDistribution"
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
:
returns the distribution of min(X1,X2)
, if X1
,X2
are
distributed according to e1
and e2
respectively;
the result is of class "UnivarLebDecDistribution"
signature(e1 = "AcDcLcDistribution", e2 = "numeric")
:
if e2
= , returns the distribution of
min(X1,X2,...,Xn)
, if X1
,X2
,
..., Xn
are i.i.d. according to e1
;
the result is of class "UnivarLebDecDistribution"
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
:
returns the distribution of max(X1,X2)
, if X1
,X2
are
distributed according to e1
and e2
respectively;
translates into -Minimum(-e1,-e2)
;
the result is of class "UnivarLebDecDistribution"
signature(e1 = "AcDcLcDistribution", e2 = "numeric")
:
if e2
= , returns the distribution of
max(X1,X2,...,Xn)
, if X1
,X2
,
..., Xn
are i.i.d. according to e1
; translates into
-Minimum(-e1,e2)
; the result is of class "UnivarLebDecDistribution"
## IGNORE_RDIFF_BEGIN plot(Maximum(Unif(0,1), Minimum(Unif(0,1), Unif(0,1)))) plot(Minimum(Exp(4),4)) ## IGNORE_RDIFF_END ## a sometimes lengthy example... plot(Minimum(Norm(),Pois()))
## IGNORE_RDIFF_BEGIN plot(Maximum(Unif(0,1), Minimum(Unif(0,1), Unif(0,1)))) plot(Minimum(Exp(4),4)) ## IGNORE_RDIFF_END ## a sometimes lengthy example... plot(Minimum(Norm(),Pois()))
n-methods
signature(object = "HyperParameter")
: returns the slot n
of the parameter of the distribution
signature(object = "HyperParameter")
: modifies the slot n
of the parameter of the distribution
signature(object = "Hyper")
: returns the slot n
of the parameter of the distribution
signature(object = "Hyper")
: modifies the slot n
of the parameter of the distribution
name-methods
signature(object = "Parameter")
: returns the slot name of the parameter
signature(object = "Parameter")
: modifies the slot name of the parameter
signature(object = "rSpace")
: returns the slot name of the space
signature(object = "rSpace")
: modifies the slot name of the space
The distribution-classes contain a slot where the sample space is stored. Typically, discrete random variables take naturals as values.
Naturals()
Naturals()
Objects could theoretically be created by calls of the form new("Naturals", dimension, name)
.
Usually an object of this class is not needed on its own. It is generated automatically when a univariate discrete
distribution is instantiated.
dimension
Object of class "character"
: the dimension of the space, by default = 1
name
Object of class "character"
: the name of the space, by default = "Natural Space"
Class "Reals"
, directly.
Class "EuclideanSpace"
, by class "Reals"
.
Class "rSpace"
, by class "Reals"
.
signature(.Object = "Naturals")
: initialize method
signature(object = "Naturals", x = "numeric")
: Does a particular vector only contain naturals?
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Reals-class
DiscreteDistribution-class
N <- Naturals() liesIn(N,1) # TRUE liesIn(N,c(0,1)) # FALSE liesIn(N,0.1) # FALSE
N <- Naturals() liesIn(N,1) # TRUE liesIn(N,c(0,1)) # FALSE liesIn(N,0.1) # FALSE
The negative binomial distribution with size
, by default
, and
prob
, by default
, has density
for
This represents the number of failures
which occur in a sequence of Bernoulli trials before a target number
of successes is reached.
C.f. rnbinom
Objects can be created by calls of the form Nbinom(prob, size)
.
This object is a negative binomial distribution.
img
Object of class "Naturals"
: The space of the image of this
distribution has got dimension 1 and the name "Natural Space".
param
Object of class "NbinomParameter"
: the parameter of this distribution (prob, size),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rnbinom
)
d
Object of class "function"
: density function (calls function dnbinom
)
p
Object of class "function"
: cumulative function (calls function pnbinom
)
q
Object of class "function"
: inverse of the cumulative function (calls function qnbinom
).
The quantile is defined as the smallest value such that
, where
is the distribution function.
support
Object of class "numeric"
: a (sorted) vector containing the support of the discrete
density function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "DiscreteDistribution"
, directly.
Class "UnivariateDistribution"
, by class "DiscreteDistribution"
.
Class "Distribution"
, by class "DiscreteDistribution"
.
signature(.Object = "Nbinom")
: initialize method
signature(object = "Nbinom")
: returns the slot prob
of the parameter of the distribution
signature(object = "Nbinom")
: modifies the slot prob
of the parameter of the distribution
signature(object = "Nbinom")
: returns the slot size
of the parameter of the distribution
signature(object = "Nbinom")
: modifies the slot size
of the parameter of the distribution
signature(e1 = "Nbinom", e2 = "Nbinom")
:
For the negative binomial distribution we use its closedness under convolutions.
Working with a computer, we use a finite interval as support which carries at least mass 1-getdistrOption("TruncQuantile")
.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
NbinomParameter-class
Geom-class
DiscreteDistribution-class
Naturals-class
rnbinom
N <- Nbinom(prob = 0.5, size = 1) # N is a binomial distribution with prob=0.5 and size=1. r(N)(1) # one random number generated from this distribution, e.g. 3 d(N)(1) # Density of this distribution is 0.25 for x=1. p(N)(0.4) # Probability that x<0.4 is 0.5. q(N)(.1) # x=0 is the smallest value x such that p(B)(x)>=0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) size(N) # size of this distribution is 1. size(N) <- 2 # size of this distribution is now 2.
N <- Nbinom(prob = 0.5, size = 1) # N is a binomial distribution with prob=0.5 and size=1. r(N)(1) # one random number generated from this distribution, e.g. 3 d(N)(1) # Density of this distribution is 0.25 for x=1. p(N)(0.4) # Probability that x<0.4 is 0.5. q(N)(.1) # x=0 is the smallest value x such that p(B)(x)>=0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) size(N) # size of this distribution is 1. size(N) <- 2 # size of this distribution is now 2.
The parameter of a negative binomial distribution, used by Nbinom-class
Objects can be created by calls of the form new("NbinomParameter", prob, size)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Nbinom
is prepared.
prob
Object of class "numeric"
: the probability of a negative binomial distribution
size
Object of class "numeric"
: the size of a negative binomial distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "NbinomParameter")
: initialize method
signature(object = "NbinomParameter")
: returns the slot prob
of the parameter of the
distribution
signature(object = "NbinomParameter")
: modifies the slot prob
of the parameter of the
distribution
signature(object = "NbinomParameter")
: returns the slot size
of the parameter of the distribution
signature(object = "NbinomParameter")
: modifies the slot size
of the parameter of the
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("NbinomParameter",prob=0.5,size=1) size(W) # size of this distribution is 1. size(W) <- 2 # size of this distribution is now 2.
W <- new("NbinomParameter",prob=0.5,size=1) size(W) # size of this distribution is 1. size(W) <- 2 # size of this distribution is now 2.
ncp-methods
signature(object = "BetaParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "BetaParameter")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "Beta")
: returns the slot ncp
of the parameter of the distribution
signature(object = "Beta")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "ChisqParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "ChisqParameter")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "Chisq")
: returns the slot ncp
of the parameter of the distribution
signature(object = "Chisq")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "FParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "FParameter")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "Fd")
: returns the slot ncp
of the parameter of the distribution
signature(object = "Fd")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "TParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "TParameter")
: modifies the slot ncp
of the parameter of the distribution
signature(object = "Td")
: returns the slot ncp
of the parameter of the distribution
signature(object = "Td")
: modifies the slot ncp
of the parameter of the distribution
The normal distribution has density
where is the mean of the distribution and
the standard deviation.
C.f.
rnorm
Objects can be created by calls of the form Norm(mean, sd)
.
This object is a normal distribution.
img
Object of class "Reals"
: The domain of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "UniNormParameter"
: the parameter of this distribution (mean and sd),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rnorm
)
d
Object of class "function"
: density function (calls function dnorm
)
p
Object of class "function"
: cumulative function (calls function pnorm
)
q
Object of class "function"
: inverse of the cumulative function (calls function qnorm
)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(e1 = "Norm", e2 = "Norm")
signature(e1 = "Norm", e2 = "Norm")
:
For the normal distribution the exact convolution formulas are implemented thereby improving the general numerical
approximation.
signature(e1 = "Norm", e2 = "numeric")
signature(e1 = "Norm", e2 = "numeric")
:
For the normal distribution we use its closedness under affine linear transformations.
signature(.Object = "Norm")
: initialize method
signature(object = "Norm")
: returns the slot mean
of the parameter of the distribution
signature(object = "Norm")
: modifies the slot mean
of the parameter of the distribution
signature(object = "Norm")
: returns the slot sd
of the parameter of the distribution
signature(object = "Norm")
: modifies the slot sd
of the parameter of the distribution
further arithmetic methods see operators-methods
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
UniNormParameter-class
AbscontDistribution-class
Reals-class
rnorm
N <- Norm(mean=1,sd=1) # N is a normal distribution with mean=1 and sd=1. r(N)(1) # one random number generated from this distribution, e.g. 2.257783 d(N)(1) # Density of this distribution is 0.3989423 for x=1. p(N)(1) # Probability that x<1 is 0.5. q(N)(.1) # Probability that x<-0.2815516 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) mean(N) # mean of this distribution is 1. sd(N) <- 2 # sd of this distribution is now 2. M <- Norm() # M is a normal distribution with mean=0 and sd=1. O <- M+N # O is a normal distribution with mean=1 (=1+0) and sd=sqrt(5) (=sqrt(2^2+1^2)).
N <- Norm(mean=1,sd=1) # N is a normal distribution with mean=1 and sd=1. r(N)(1) # one random number generated from this distribution, e.g. 2.257783 d(N)(1) # Density of this distribution is 0.3989423 for x=1. p(N)(1) # Probability that x<1 is 0.5. q(N)(.1) # Probability that x<-0.2815516 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) mean(N) # mean of this distribution is 1. sd(N) <- 2 # sd of this distribution is now 2. M <- Norm() # M is a normal distribution with mean=0 and sd=1. O <- M+N # O is a normal distribution with mean=1 (=1+0) and sd=sqrt(5) (=sqrt(2^2+1^2)).
The parameter of a normal distribution, used by Norm-class
Objects can be created by calls of the form new("NormParameter", sd, mean)
.
Usually an object of this class is not needed on its own. It is the
mother-class of the class UniNormParameter, which is generated
automatically when such a distribution is instantiated.
sd
Object of class "numeric"
: the sd of a normal distribution
mean
Object of class "numeric"
: the mean of a normal distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "NormParameter")
:
initialize method
signature(object = "NormParameter")
:
returns the slot mean of the parameter of the distribution
signature(object = "NormParameter")
:
modifies the slot mean of the parameter of the distribution
signature(object = "NormParameter")
:
returns the slot sd of the parameter of the distribution
signature(object = "NormParameter")
:
modifies the slot sd of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("NormParameter", mean = 0, sd = 1) sd(W) # sd of this distribution is 1. sd(W) <- 2 # sd of this distribution is now 2.
W <- new("NormParameter", mean = 0, sd = 1) sd(W) # sd of this distribution is 1. sd(W) <- 2 # sd of this distribution is now 2.
Generates an object of class "NoSymmetry"
.
NoSymmetry()
NoSymmetry()
Object of class "NoSymmetry"
Matthias Kohl [email protected]
NoSymmetry-class
, DistributionSymmetry-class
NoSymmetry() ## The function is currently defined as function(){ new("NoSymmetry") }
NoSymmetry() ## The function is currently defined as function(){ new("NoSymmetry") }
Class for non-symmetric distributions.
Objects can be created by calls of the form new("NoSymmetry")
.
More frequently they are created via the generating function
NoSymmetry
.
type
Object of class "character"
:
contains “non-symmetric distribution”
SymmCenter
Object of class "NULL"
Class "DistributionSymmetry"
, directly.
Class "Symmetry"
, by class "DistributionSymmetry"
.
Matthias Kohl [email protected]
NoSymmetry
, Distribution-class
new("NoSymmetry")
new("NoSymmetry")
Arithmetics and unary mathematical transformations for distributions
e1 , e2
|
objects of class |
Arithmetics as well as all functions from group Math
, see Math
are provided for distributions; wherever possible exact expressions are used; else
random variables are generated according to this transformation and subsequently the remaining
slots filled by RtoDPQ
, RtoDPQ.d
-
signature(e1 = "UnivariateDistribution", e2 = "missing")
unary operator; result again of class "UnivariateDistribution"
; exact
-
signature(e1 = "Norm", e2 = "missing")
unary operator; result again of "Norm"
; exact
+
signature(e1 = "UnivariateDistribution", e2 = "numeric")
result again of class "UnivariateDistribution"
; exact
+
signature(e1 = "AbscontDistribution", e2 = "numeric")
result of
class "AffLinAbscontDistribution"
; exact
+
signature(e1 = "DiscreteDistribution", e2 = "numeric")
result of
class "AffLinDiscreteDistribution"
; exact
+
signature(e1 = "LatticeDistribution", e2 = "numeric")
result of
class "AffLinLatticeDistribution"
; exact
+
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
result of
class "AffLinUnivarLebDecDistribution"
; exact
+
signature(e1 = "CompoundDistribution", e2 = "numeric")
result of
class "AffLinUnivarLebDecDistribution"
; exact
+
signature(e1 = "AffLinAbscontDistribution", e2 = "numeric")
result again of
class "AffLinAbscontDistribution"
; exact
+
signature(e1 = "AffLinDiscreteDistribution", e2 = "numeric")
result again of
class "AffLinDiscreteDistribution"
; exact
+
signature(e1 = "AffLinLatticeDistribution", e2 = "numeric")
result again of
class "AffLinLatticeDistribution"
; exact
+
signature(e1 = "AffLinUnivarLebDecDistribution", e2 = "numeric")
result of
class "AffLinUnivarLebDecDistribution"
; exact
+
signature(e1 = "Cauchy", e2 = "numeric")
result again of class "Cauchy"
; exact
+
signature(e1 = "Dirac", e2 = "numeric")
result again of class "Dirac"
; exact
+
signature(e1 = "Norm", e2 = "numeric")
result again of class "Norm"
; exact
+
signature(e1 = "Unif", e2 = "numeric")
result again of class "Unif"
; exact
+
signature(e1 = "Logis", e2 = "numeric")
result again of class "Logis"
; exact
+
signature(e1 = "numeric", e2 = "UnivariateDistribution")
is translated to
signature(e1 = "UnivariateDistribution", e2 = "numeric")
; exact
-
signature(e1 = "UnivariateDistribution", e2= "ANY")
;exact
-
signature(e1 = "UnivariateDistribution", e2 = "numeric")
is translated to
e1 + (-e2)
; exact
-
signature(e1 = "numeric", e2 = "UnivariateDistribution")
is translated to (-e1) + e2
; exact
-
signature(e1 = "numeric", e2 = "Beta")
if ncp(e2)==0
and e1 == 1
,
an exact (central) Beta(shape1 = shape2(e2), shape2 = shape1(e2))
is returned, else
the default method is used; exact
*
signature(e1 = "UnivariateDistribution", e2 = "numeric")
result again of class "UnivariateDistribution"
; exact
*
signature(e1 = "AbscontDistribution", e2 = "numeric")
result of
class "AffLinAbscontDistribution"
; exact
*
signature(e1 = "DiscreteDistribution", e2 = "numeric")
result of
class "AffLinDiscreteDistribution"
; exact
*
signature(e1 = "LatticeDistribution", e2 = "numeric")
result of
class "AffLinLatticeDistribution"
; exact
*
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
result of
class "AffLinUnivarLebDecDistribution"
; exact
*
signature(e1 = "CompoundDistribution", e2 = "numeric")
result of
class "AffLinUnivarLebDecDistribution"
; exact
*
signature(e1 = "AffLinAbscontDistribution", e2 = "numeric")
result again of
class "AffLinAbscontDistribution"
; exact
*
signature(e1 = "AffLinDiscreteDistribution", e2 = "numeric")
result again of
class "AffLinDiscreteDistribution"
; exact
*
signature(e1 = "AffLinLatticeDistribution", e2 = "numeric")
result again of
class "AffLinLatticeDistribution"
; exact
*
signature(e1 = "AffLinUnivarLebDecDistribution", e2 = "numeric")
result of
class "AffLinUnivarLebDecDistribution"
; exact
*
signature(e1 = "DExp", e2 = "numeric")
if abs(e2)>0
result again of class "DExp"
; exact
*
signature(e1 = "Exp", e2 = "numeric")
if e2>0
result again of class "Exp"
; exact
*
signature(e1 = "ExpOrGammaOrChisq", e2 = "numeric")
if e1
is a Gamma distribution and e2>0
result of class "Gammad"
; exact
*
signature(e1 = "Weibull", e2 = "numeric")
if e2>0
result of class "Weibull"
; exact
*
signature(e1 = "Cauchy", e2 = "numeric")
if abs(e2)>0
result again of class "Cauchy"
; exact
*
signature(e1 = "Dirac", e2 = "numeric")
result again of class "Dirac"
; exact
*
signature(e1 = "Norm", e2 = "numeric")
if abs(e2)>0
result again of class "Norm"
; exact
*
signature(e1 = "Unif", e2 = "numeric")
if abs(e2)>0
result again of class "Unif"
; exact
*
signature(e1 = "Logis", e2 = "numeric")
if e2>0
result again of class "Logis"
; exact
*
signature(e1 = "Lnorm", e2 = "numeric")
if e2>0
result again of class "Lnorm"
; exact
*
signature(e1 = "numeric", e2 = "UnivariateDistribution")
is translated to
signature(e1 = "UnivariateDistribution", e2 = "numeric")
; exact
/
signature(e1 = "UnivariateDistribution", e2 = "numeric")
is translated to e1 * (1/e2)
; exact
+
signature(e1 = "UnivariateDistribution", e2 = "UnivariateDistribution")
result again of class
"UnivariateDistribution"
; is generated by simulations
-
signature(e1 = "UnivariateDistribution", e2 = "UnivariateDistribution")
is translated to (-e1) + (-e2)
;
result again of class "UnivariateDistribution"
; is generated by simulations
-
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
: both operands are coerced
to class "UnivarLebDecDistribution"
and the corresponding method is used.
+
signature(e1 = "AbscontDistribution", e2 = "AbscontDistribution")
assumes e1
, e2
independent; result again of class
"AbscontDistribution"
; is generated by FFT
+
signature(e1 = "AbscontDistribution", e2 = "DiscreteDistribution")
assumes e1
, e2
independent; result again of class
"AbscontDistribution"
; is generated by FFT
+
signature(e1 = "DiscreteDistribution", e2 = "AbscontDistribution")
assumes e1
, e2
independent; result again of class
"AbscontDistribution"
; is generated by FFT
+
signature(e1 = "LatticeDistribution", e2 = "LatticeDistribution")
assumes e1
, e2
independent;
if the larger lattice-width is an integer multiple of the smaller(in abs. value) one: result again of class
"LatticeDistribution"
; is generated by D/FFT
+
signature(e1 = "DiscreteDistribution", e2 = "DiscreteDistribution")
assumes e1
, e2
independent; result again of class
"DiscreteDistribution"
; is generated by explicite convolution
+
signature(e1 = "LatticeDistribution", e2 = "DiscreteDistribution")
assumes e1
, e2
independent; result again of class
"DiscreteDistribution"
; is generated by explicite convolution
+
signature(e1 = "UnivarLebDecDistribution", e2 = "UnivarLebDecDistribution")
assumes e1
, e2
independent; result again of class
"UnivarLebDecDistribution"
; is generated by separate explicite convolution of a.c. and discrete parts of e1
and e2
and subsequent flattening with flat.LCD
; if getdistrOption("withSimplify")
is TRUE
, result is piped
through a call to simplifyD
+
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
: both operands are coerced
to class "UnivarLebDecDistribution"
and the corresponding method is used.
+
signature(e1 = "Binom", e2 = "Binom")
assumes e1
, e2
independent;
if prob(e1)==prob(e2)
, result again of class
"Binom"
; uses the convolution formula for binomial distributions; exact
+
signature(e1 = "Cauchy", e2 = "Cauchy")
assumes e1
, e2
independent; result again of class
"Cauchy"
; uses the convolution formula for Cauchy distributions; exact
+
signature(e1 = "Chisq", e2 = "Chisq")
assumes e1
, e2
independent; result again of class
"Chisq"
; uses the convolution formula for Chisq distributions; exact
+
signature(e1 = "Dirac", e2 = "Dirac")
result again of class "Dirac"
; exact
+
signature(e1 = "ExpOrGammaOrChisq", e2 = "ExpOrGammaOrChisq")
assumes e1
, e2
independent; if
e1
, e2
are Gamma distributions, result is of class
"Gammad"
; uses the convolution formula for Gamma distributions; exact
+
signature(e1 = "Pois", e2 = "Pois")
assumes e1
, e2
independent; result again of class
"Pois"
; uses the convolution formula for Poisson distributions; exact
+
signature(e1 = "Nbinom", e2 = "Nbinom")
assumes e1
, e2
independent; if
prob(e1)==prob(e2)
, result again of class
"Nbinom"
; uses the convolution formula for negative binomial distributions; exact
+
signature(e1 = "Norm", e2 = "Norm")
assumes e1
, e2
independent; result again of class
"Norm"
; uses the convolution formula for normal distributions; exact
+
signature(e1 = "UnivariateDistribution", e2 = "Dirac")
translated to e1 + location(e2)
;
result again of class "Dirac"
; exact
+
signature(e1 = "Dirac", e2 = "UnivariateDistribution")
translated to e2 + location(e1)
;
result again of class "Dirac"
; exact
+
signature(e1 = "Dirac", e2 = "DiscreteDistribution")
translated to e2 + location(e1)
;
result again of class "Dirac"
; exact
-
signature(e1 = "Dirac", e2 = "Dirac")
result again of class "Dirac"
; exact
*
signature(e1 = "Dirac", e2 = "Dirac")
result again of class "Dirac"
; exact
*
signature(e1 = "UnivariateDistribution", e2 = "Dirac")
translated to e1 * location(e2)
;
result again of class "Dirac"
; exact
*
signature(e1 = "Dirac", e2 = "UnivariateDistribution")
translated to e2 * location(e1)
;
result again of class "Dirac"
; exact
*
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
: by means of decomposePM
e1
and e2
are decomposed into positive and negative parts; of these, convolutions of the
corresponding logarithms are computed separately and finally exp
is applied to them, again separately;
the resulting mixing components are then “flattened” to one object of class
UnivarLebDecDistribution
by flat.LCD
which according to getdistrOption(withSimplify)
gets piped through a call to simplifyD
.
/
signature(e1 = "Dirac", e2 = "Dirac")
result again of class "Dirac"
; exact
/
signature(e1 = "numeric", e2 = "Dirac")
result again of class "Dirac"
; exact
/
signature(e1 = "numeric", e2 = "AcDcLcDistribution")
: if d.discrete(e2)(0)*discreteWeight(e2)>0
throws an error (would give division by 0 with positive probability); else by means of decomposePM
e2
is decomposed into positive and negative parts; then, similarly the result obtains as for
"*"(signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution"))
by the exp-log trick
and is “flattened” to one object of class
UnivarLebDecDistribution
by flat.LCD
and
according to getdistrOption(withSimplify)
is piped through
a call to simplifyD
; exact..
/
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
: translated to e1 * (1/e2)
.
^
signature(e1 = "AcDcLcDistribution", e2 = "Integer")
: if e2=0
returns Dirac(1)
;
if e2=1
returns e1
; if e2<0
translated to (1/e1)^(-e2)
; exact.
^
signature(e1 = "AcDcLcDistribution", e2 = "numeric")
: if e2
is integer uses preceding
item; else if e1< 0
with positive probability, throughs an error; else
the result obtains similarly to
"*"(signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution"))
by the exp-log trick
and is “flattened” to one object of class
UnivarLebDecDistribution
by flat.LCD
and
according to getdistrOption(withSimplify)
is piped through
a call to simplifyD
; exact.
^
signature(e1 = "AcDcLcDistribution", e2 = "AcDcLcDistribution")
:
if e1
is negative with positive probability,
throws an error if e2
is non-integer
with positive probability; if e1
is 0 with positive probability
throws an error if e2
is non-integer with positive probability.
if e2
is integer with probability 1 uses
DiscreteDistribution(supp=e1^(Dirac(x))
for each x
in support(e2)
,
builds up a corresponding mixing distribution; the latter is “flattened” to one object of class
UnivarLebDecDistribution
by flat.LCD
and
according to getdistrOption(withSimplify)
is piped through
a call to simplifyD
.
Else the result obtains similarly to "*"(signature(e1 = "AcDcLcDistribution",
e2 = "AcDcLcDistribution"))
by the exp-log trick
and is “flattened” to one object of class
UnivarLebDecDistribution
by flat.LCD
and
according to getdistrOption(withSimplify)
is piped through
a call to simplifyD
; exact.
^
signature(e1 = "numeric", e2 = "AcDcLcDistribution")
:
if e1
is negative, throws an error if e2
is non-integer
with positive probability; if e1
is 0 throws an error if
e2
is non-integer with positive probability.
if e2
is integer with probability 1 uses
DiscreteDistribution(supp=e1^support(e2), prob=discrete.d(supp))
else the result obtains similarly to "*"(signature(e1 = "AcDcLcDistribution",
e2 = "AcDcLcDistribution"))
by the exp-log trick
and is “flattened” to one object of class
UnivarLebDecDistribution
by flat.LCD
and
according to getdistrOption(withSimplify)
is piped through
a call to simplifyD
; exact.
Ruckdeschel, P., Kohl, M.(2014): General purpose convolution algorithm for distributions in S4-Classes by means of FFT. J. Statist. Softw. 59(4): 1-25.
UnivariateDistribution-class
AbscontDistribution-class
DiscreteDistribution-class
LatticeDistribution-class
Norm-class
Binom-class
Pois-class
Dirac-class
Cauchy-class
Gammad-class
Logis-class
Lnorm-class
Exp-class
Weibull-class
Nbinom-class
N <- Norm(0,3) P <- Pois(4) a <- 3 N + a N + P N - a a * N a * P N / a + sin( a * P - N) N * P N / N ## takes a little time N ^ P 1.2 ^ N abs(N) ^ 1.3
N <- Norm(0,3) P <- Pois(4) a <- 3 N + a N + P N - a a * N a * P N / a + sin( a * P - N) N * P N / N ## takes a little time N ^ P 1.2 ^ N abs(N) ^ 1.3
auxiliary classes; may contain either a Parameter or NULL, resp. a matrix or NULL cf. J. Chambers, "green book".
"OptionalParameter" is a virtual Class: No objects may be created from it;
"OptionalMatrix" is a class generated by setClassUnion()
so may contain NULL or any matrix
No methods defined with class "OptionalParameter" in the signature.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Parameter-class
, AbscontDistribution-class
In package distr, we add an extra option "newDevice"
;
it is inspected and manipulated as usual.
We do not change the behaviour of options
or getOption
;
for the general documentation to these two functions,
confer options
, getOption
. Here
we only document added options.
"newDevice"
logical; controls behaviour when generating several plots within
one function; if TRUE
, before each call to call to plot.new
,
a call to devNew
is inserted; if FALSE
, we reproduce the usual behaviour
in graphics, i.e.; we do not call devNew
. Defaults to FALSE
.
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
getOption("newDevice") options("newDevice"=TRUE)
getOption("newDevice") options("newDevice"=TRUE)
p-methods
signature(object = "Distribution")
: returns the cumulative distribution function (c.d.f.),
i.e.;
signature(object = "Distribution")
:
from distr-2.6 onwards, we provide this as a synonym for
method p
; this synonym more explicitely states that we are dealing with
the right-continuous variant of a c.d.f.
Distribution-class
, p.l
require(distr) N <- Norm() p(N)(0.3) p.r(N)(0.3)
require(distr) N <- Norm() p(N)(0.3) p.r(N)(0.3)
p-methods
return the left continuous cumulative distribution function,
i.e.;
signature(object = "AbscontDistribution")
signature(object = "DiscreteDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarMixingDistribution")
DiscreteDistribution-class
UnivarLebDecDistribution-class
param-methods
signature(object = "Distribution")
: returns the parameter
Parameter is the mother-class of all Parameter classes.
Objects can be created by calls of the form new("Parameter")
.
name
Object of class "character"
:
a name / comment for the parameters
signature(object = "Parameter")
:
returns the name of the parameter
signature(object = "Parameter")
:
modifies the name of the parameter
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
pivot-methods
signature(object = "Lattice")
: returns the slot pivot of the lattice
signature(object = "Lattice")
: modifies the slot pivot of the lattice
signature(object = "LatticeDistribution")
: returns the slot pivot of the lattice slot of the distribution
signature(object = "LatticeDistribution")
: modifies the slot pivot of the lattice slot of the distribution
plot-methods
plot(x, y, ...) ## S4 method for signature 'AbscontDistribution,missing' plot(x, width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, ngrid = 1000, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 1.2, cex.sub = par("cex.sub"), col.points = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'DiscreteDistribution,missing' plot(x, width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 1.2, cex.sub = par("cex.sub"), col.points = par("col"), col.hor = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'AffLinUnivarLebDecDistribution,missing' plot(x, width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, ngrid = 1000, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 1.2, cex.sub = par("cex.sub"), col.points = par("col"), col.hor = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'UnivarLebDecDistribution,missing' plot(x, width = 10, height = 14.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, ngrid = 1000, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 0.9, cex.sub = par("cex.sub"), col.points = par("col"), col.hor = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'DistrList,missing' plot(x, y, ...) ## S4 method for signature 'CompoundDistribution,missing' plot(x, y, ...)
plot(x, y, ...) ## S4 method for signature 'AbscontDistribution,missing' plot(x, width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, ngrid = 1000, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 1.2, cex.sub = par("cex.sub"), col.points = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'DiscreteDistribution,missing' plot(x, width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 1.2, cex.sub = par("cex.sub"), col.points = par("col"), col.hor = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'AffLinUnivarLebDecDistribution,missing' plot(x, width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, ngrid = 1000, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 1.2, cex.sub = par("cex.sub"), col.points = par("col"), col.hor = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'UnivarLebDecDistribution,missing' plot(x, width = 10, height = 14.5, withSweave = getdistrOption("withSweave"), xlim = NULL, ylim = NULL, ngrid = 1000, verticals = TRUE, do.points = TRUE, main = FALSE, inner = TRUE, sub = FALSE, bmar = par("mar")[1], tmar = par("mar")[3], ..., cex.main = par("cex.main"), cex.inner = 0.9, cex.sub = par("cex.sub"), col.points = par("col"), col.hor = par("col"), col.vert = par("col"), col.main = par("col.main"), col.inner = par("col.main"), col.sub = par("col.sub"), cex.points = 2.0, pch.u = 21, pch.a = 16, mfColRow = TRUE, to.draw.arg = NULL, withSubst = TRUE) ## S4 method for signature 'DistrList,missing' plot(x, y, ...) ## S4 method for signature 'CompoundDistribution,missing' plot(x, y, ...)
x |
object of class
|
y |
missing |
xlim |
the x limits (x1, x2) of the plot. Note that |
ylim |
the y limits of the plot. Either as in |
width |
width (in inches) of the graphics device opened |
height |
height (in inches) of the graphics device opened |
withSweave |
logical: if |
ngrid |
integer: number of grid points used for plots of absolutely continuous distributions |
main |
logical: is a main title to be used? or |
inner |
logical: do panels for density/probability function -
cdf - quantile function have their own titles? or |
sub |
logical: is a sub-title to be used? or |
tmar |
top margin – useful for non-standard main title sizes |
bmar |
bottom margin – useful for non-standard sub title sizes |
verticals |
logical: if |
do.points |
logical: if |
cex.points |
numeric; character expansion factor; as in
|
col.points |
character or integer code; color of points; as in
|
col.hor |
character or integer code; color of horizontal lines; as in
|
col.vert |
character or integer code; color of vertical lines; as in
|
cex.main |
magnification to be used for main titles relative
to the current setting of |
cex.inner |
magnification to be used for inner titles relative
to the current setting of |
cex.sub |
magnification to be used for sub titles relative
to the current setting of |
col.main |
character or integer code; color for the main title |
col.inner |
character or integer code; color for the inner title |
col.sub |
character or integer code; color for the sub title |
pch.u |
character or integer code; plotting characters or symbols for
unattained value; see |
pch.a |
character or integer code; plotting characters or symbols for
attained value; see |
mfColRow |
shall default partition in panels be used — defaults to |
to.draw.arg |
Either |
withSubst |
logical; if |
... |
addtional arguments for |
signature(x = "AffLinUnivarLebDecDistribution", y = "missing")
: plots
cumulative distribution function and the quantile function
signature(x = "UnivarLebDecDistribution", y = "missing")
: plots a set of
eight plots: in the first row, it plots the
cumulative distribution function and the quantile function; in the second
row the absolutely continuous part (with density, cdf and quantile fct.),
and in the last row the discrete part (with prob.fct., cdf and quantile fct.).
signature(x = "CompoundDistribution", y = "missing")
:
coerces x
to "UnivarLebDecDistribution"
and uses the corresponding
method.
signature(x = "AbscontDistribution", y = "missing")
: plots density,
cumulative distribution function and the quantile function
signature(x = "DiscreteDistribution", y = "missing")
: plots probability
function, cumulative distribution function and the quantile function
signature(x = "DistrList", y = "missing")
: plots a list of distributions
Any parameters of plot.default
may be passed on to this particular
plot
method.
For main-, inner, and subtitles given as arguments main
,
inner
, and sub
, top and bottom margins are enlarged to 5 resp.
6 by default but may also be specified by tmar
/ bmar
arguments.
If main
/ inner
/ sub
are
logical then if the respective argument is FALSE
nothing is done/plotted,
but if it is TRUE
, we use a default main title taking up the calling
argument x
in case of main
, default inner titles taking up the
class and (named) parameter slots of argument x
in case of inner
,
and a "generated on <data>"-tag in case of sub
.
Of course, if main
/ inner
/ sub
are character
, this
is used for the title; in case of inner
it is then checked whether it
has length 3. In all title and axis label arguments, if withSubst
is TRUE
,
the following patterns are substituted:
"%C"
class of argument x
"%P"
parameters of x
in form of a comma-separated list of
<value>'s coerced to character
"%Q"
parameters of x
in form of a comma-separated list of
<value>'s coerced to character and in parenthesis — unless
empty; then ""
"%N"
parameters of x
in form of a comma-separated list
<name> = <value> coerced to character
"%A"
deparsed argument x
"%D"
time/date-string when the plot was generated
If not explicitly set, col.points
, col.vert
,
col.hor
, col.main
, col.inner
, col.sub
are set
to col
if this arg is given and else to
par("col")
resp. for the titles par("col.main")
,
par("col.main")
, par("col.sub")
.
If not explicitly set, pch.a
, pch.u
are set
to pch
if this arg is given and else to 16, 21, respectively.
If not explicitly set, cex
is set to 1. If not explicitly set,
cex.points
is set to $2.0 cex
$ (if cex
is given)
and to 2.0 else.
If general plot
arguments xlab
, ylab
are not specified,
they are set to "x"
, "q"
, "p"
for xlab
and
to "d(x)"
, "p(q)"
, "q(p)"
for ylab
for
density, cdf and quantile function respectively.
Otherwise, according to the respective content of to.draw.arg
,
it is supposed to be a list with one entry for each selected panel, i.e.,
in case x
is an object of class DiscreteDistribution
or
AbscontDistribution
a list of maximal length maximally 3, respectively,
in case x
is an object of class UnivarLebDecDistribution
In these label arguments, the same pattern substitutions are made as
for titles. If no character substitutions and mathematical expressions
are needed, character vectors of respective length instead of lists are
also allowed for arguments xlab
, ylab
.
In addition, argument ...
may contain arguments panel.first
,
panel.last
, i.e., hook expressions to be evaluated at the very beginning
and at the very end of each panel (within the then valid coordinates).
To be able to use these hooks for each panel individually, they may also be
lists of expressions (of the same length as the number of panels and
run through in the same order as the panels).
An S3 object of class c("plotInfo","DiagnInfo")
, i.e., a list
containing the information needed to produce the
respective plot, which at a later stage could be used by different
graphic engines (like, e.g. ggplot
) to produce the plot
in a different framework. A more detailed description will follow in
a subsequent version.
plot
,plot.default
,
plot.stepfun
, par
plot(Binom(size = 4, prob = 0.3)) plot(Binom(size = 4, prob = 0.3), do.points = FALSE) plot(Binom(size = 4, prob = 0.3), verticals = FALSE) plot(Binom(size = 4, prob = 0.3), main = TRUE) plot(Binom(size = 4, prob = 0.3), main = FALSE) plot(Binom(size = 4, prob = 0.3), cex.points = 1.2, pch = 20) plot(Binom(size = 4, prob = 0.3), xlab = list("a1","a2", "a3"), ylab=list("p"="U","q"="V","d"="W")) B <- Binom(size = 4, prob = 0.3) plot(B, col = "red", col.points = "green", main = TRUE, col.main = "blue", col.sub = "orange", sub = TRUE, cex.sub = 0.6, col.inner = "brown") plot(Nbinom(size = 4,prob = 0.3), cex.points = 1.2, col = "red", col.points = "green") plot(Nbinom(size = 4,prob = 0.3), cex.points = 1.2, pch.u = 20, pch.a = 10) plot(Norm(), main = TRUE, cex.main = 3, tmar = 6) plot(Norm(), inner = FALSE, main = TRUE, cex.main = 3, tmar = 6) plot(Norm(), lwd = 3, col = "red", ngrid = 200, lty = 3, las = 2) plot(Norm(), main = "my Distribution: %A", inner = list(expression(paste(lambda,"-density of %C(%P)")), "CDF", "Pseudo-inverse with param's %N"), sub = "this plot was correctly generated on %D", cex.inner = 0.9, cex.sub = 0.8) plot(Norm(),panel.first=grid(4,4)) ## does not (yet) work as desired: plot(Norm(),panel.first=list(grid(5,5),grid(3,3),grid(4,4))) li <- list(substitute(grid(5,5)),substitute(grid(3,3)),substitute(grid(4,4))) plot(Norm(),panel.first=li) plot(Cauchy()) plot(Cauchy(), xlim = c(-4,4)) plot(Chisq()) ### the next ylab argument is just for illustration purposes plot(Chisq(),mfColRow = FALSE,to.draw.arg="d", xlab="x",ylab=list(expression(paste(lambda,"-density of %C(%P)")))) ## substitution can be switched off plot(Chisq(),mfColRow = FALSE,to.draw.arg="d", xlab="x",ylab=list(expression(paste(lambda,"-density of %C(%P)"))), withSubst=FALSE) plot(Chisq(), log = "xy", ngrid = 100) Ch <- Chisq(); setgaps(Ch); plot(Ch, do.points = FALSE) setgaps(Ch, exactq = 3); plot(Ch, verticals = FALSE) plot(Ch, cex = 1.2, pch.u = 20, pch.a = 10, col.points = "green", col.vert = "red") ## Not run: # to save time ## some distribution with gaps wg <- flat.mix(UnivarMixingDistribution(Unif(0,1),Unif(4,5), withSimplify=FALSE)) # some Lebesgue decomposed distribution mymix <- UnivarLebDecDistribution(acPart = wg, discretePart = Binom(4,.4), acWeight = 0.4) plot(mymix) # ## selection of subpanels for plotting N <- Norm() par(mfrow=c(1,2)) plot(N, mfColRow = FALSE, to.draw.arg=c("d","q")) plot(N, mfColRow = FALSE, to.draw.arg=c(2,3)) par(mfrow=c(1,1)) wg <- flat.mix(UnivarMixingDistribution(Unif(0,1),Unif(4,5), withSimplify=FALSE)) myLC <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart = wg, discreteWeight=.2) layout(matrix(c(rep(1,6),2,2,3,3,4,4,5,5,5,6,6,6), nrow=3, byrow=TRUE)) plot(myLC,mfColRow = FALSE, to.draw.arg=c("p","d.c","p.c","q.c", "p.d","q.d")) P <- Pois(2) plot(as(P,"UnivarLebDecDistribution"),mfColRow = FALSE,to.draw.arg=c("d.d")) ### the next ylab argument is just for illustration purposes plot(as(P,"UnivarLebDecDistribution"),mfColRow = FALSE,to.draw.arg=c("d.d"), xlab="x",ylab=list(expression(paste(lambda,"-density of %C(%P)")))) ## End(Not run)
plot(Binom(size = 4, prob = 0.3)) plot(Binom(size = 4, prob = 0.3), do.points = FALSE) plot(Binom(size = 4, prob = 0.3), verticals = FALSE) plot(Binom(size = 4, prob = 0.3), main = TRUE) plot(Binom(size = 4, prob = 0.3), main = FALSE) plot(Binom(size = 4, prob = 0.3), cex.points = 1.2, pch = 20) plot(Binom(size = 4, prob = 0.3), xlab = list("a1","a2", "a3"), ylab=list("p"="U","q"="V","d"="W")) B <- Binom(size = 4, prob = 0.3) plot(B, col = "red", col.points = "green", main = TRUE, col.main = "blue", col.sub = "orange", sub = TRUE, cex.sub = 0.6, col.inner = "brown") plot(Nbinom(size = 4,prob = 0.3), cex.points = 1.2, col = "red", col.points = "green") plot(Nbinom(size = 4,prob = 0.3), cex.points = 1.2, pch.u = 20, pch.a = 10) plot(Norm(), main = TRUE, cex.main = 3, tmar = 6) plot(Norm(), inner = FALSE, main = TRUE, cex.main = 3, tmar = 6) plot(Norm(), lwd = 3, col = "red", ngrid = 200, lty = 3, las = 2) plot(Norm(), main = "my Distribution: %A", inner = list(expression(paste(lambda,"-density of %C(%P)")), "CDF", "Pseudo-inverse with param's %N"), sub = "this plot was correctly generated on %D", cex.inner = 0.9, cex.sub = 0.8) plot(Norm(),panel.first=grid(4,4)) ## does not (yet) work as desired: plot(Norm(),panel.first=list(grid(5,5),grid(3,3),grid(4,4))) li <- list(substitute(grid(5,5)),substitute(grid(3,3)),substitute(grid(4,4))) plot(Norm(),panel.first=li) plot(Cauchy()) plot(Cauchy(), xlim = c(-4,4)) plot(Chisq()) ### the next ylab argument is just for illustration purposes plot(Chisq(),mfColRow = FALSE,to.draw.arg="d", xlab="x",ylab=list(expression(paste(lambda,"-density of %C(%P)")))) ## substitution can be switched off plot(Chisq(),mfColRow = FALSE,to.draw.arg="d", xlab="x",ylab=list(expression(paste(lambda,"-density of %C(%P)"))), withSubst=FALSE) plot(Chisq(), log = "xy", ngrid = 100) Ch <- Chisq(); setgaps(Ch); plot(Ch, do.points = FALSE) setgaps(Ch, exactq = 3); plot(Ch, verticals = FALSE) plot(Ch, cex = 1.2, pch.u = 20, pch.a = 10, col.points = "green", col.vert = "red") ## Not run: # to save time ## some distribution with gaps wg <- flat.mix(UnivarMixingDistribution(Unif(0,1),Unif(4,5), withSimplify=FALSE)) # some Lebesgue decomposed distribution mymix <- UnivarLebDecDistribution(acPart = wg, discretePart = Binom(4,.4), acWeight = 0.4) plot(mymix) # ## selection of subpanels for plotting N <- Norm() par(mfrow=c(1,2)) plot(N, mfColRow = FALSE, to.draw.arg=c("d","q")) plot(N, mfColRow = FALSE, to.draw.arg=c(2,3)) par(mfrow=c(1,1)) wg <- flat.mix(UnivarMixingDistribution(Unif(0,1),Unif(4,5), withSimplify=FALSE)) myLC <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart = wg, discreteWeight=.2) layout(matrix(c(rep(1,6),2,2,3,3,4,4,5,5,5,6,6,6), nrow=3, byrow=TRUE)) plot(myLC,mfColRow = FALSE, to.draw.arg=c("p","d.c","p.c","q.c", "p.d","q.d")) P <- Pois(2) plot(as(P,"UnivarLebDecDistribution"),mfColRow = FALSE,to.draw.arg=c("d.d")) ### the next ylab argument is just for illustration purposes plot(as(P,"UnivarLebDecDistribution"),mfColRow = FALSE,to.draw.arg=c("d.d"), xlab="x",ylab=list(expression(paste(lambda,"-density of %C(%P)")))) ## End(Not run)
The Poisson distribution has density
for . The mean and variance are
.
C.f. rpois
Objects can be created by calls of the form Pois(lambda)
.
This object is a Poisson distribution.
img
Object of class "Naturals"
:
The space of the image of this distribution has got dimension 1
and the name "Natural Space".
param
Object of class "PoisParameter"
:
the parameter of this distribution (lambda), declared at its
instantiation
r
Object of class "function"
:
generates random numbers (calls function rpois)
d
Object of class "function"
:
density function (calls function dpois)
p
Object of class "function"
:
cumulative function (calls function ppois)
q
Object of class "function"
:
inverse of the cumulative function (calls function qpois).
The quantile is defined as the smallest value such that
, where
is the distribution function.
support
Object of class "numeric"
: a (sorted)
vector containing the support of the discrete density function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "DiscreteDistribution"
, directly.
Class "UnivariateDistribution"
, by class "DiscreteDistribution"
.
Class "Distribution"
, by class "DiscreteDistribution"
.
signature(e1 = "Pois", e2 = "Pois")
:
For the Poisson distribution the exact convolution formula is
implemented thereby improving the general numerical approximation.
signature(.Object = "Pois")
:
initialize method
signature(object = "Pois")
:
returns the slot lambda of the parameter of the distribution
signature(object = "Pois")
:
modifies the slot lambda of the parameter of the distribution
Working with a computer, we use a finite interval as support which carries at least mass 1-getdistrOption("TruncQuantile")
.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
PoisParameter-class
DiscreteDistribution-class
Naturals-class
rpois
P <- Pois(lambda = 1) # P is a Poisson distribution with lambda = 1. r(P)(1) # one random number generated from this distribution, e.g. 1 d(P)(1) # Density of this distribution is 0.3678794 for x = 1. p(P)(0.4) # Probability that x < 0.4 is 0.3678794. q(P)(.1) # x = 0 is the smallest value x such that p(B)(x) >= 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) lambda(P) # lambda of this distribution is 1. lambda(P) <- 2 # lambda of this distribution is now 2. R <- Pois(lambda = 3) # R is a Poisson distribution with lambda = 2. S <- P + R # R is a Poisson distribution with lambda = 5(=2+3).
P <- Pois(lambda = 1) # P is a Poisson distribution with lambda = 1. r(P)(1) # one random number generated from this distribution, e.g. 1 d(P)(1) # Density of this distribution is 0.3678794 for x = 1. p(P)(0.4) # Probability that x < 0.4 is 0.3678794. q(P)(.1) # x = 0 is the smallest value x such that p(B)(x) >= 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) lambda(P) # lambda of this distribution is 1. lambda(P) <- 2 # lambda of this distribution is now 2. R <- Pois(lambda = 3) # R is a Poisson distribution with lambda = 2. S <- P + R # R is a Poisson distribution with lambda = 5(=2+3).
The parameter of a Poisson distribution, used by Pois-class
Objects can be created by calls of the form new("PoisParameter", lambda)
.
Usually an object of this class is not needed on its own, it is
generated automatically when an object of the class Pois is prepared.
lambda
Object of class "numeric"
:
the lambda of a Poisson distribution
name
Object of class "character"
:
a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "PoisParameter")
:
initialize method
signature(object = "PoisParameter")
:
returns the slot lambda of the parameter of the distribution
signature(object = "PoisParameter")
:
modifies the slot lambda of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("PoisParameter",lambda = 1) lambda(W) # lambda of this distribution is 1. lambda(W) <- 2 # lambda of this distribution is now 2.
W <- new("PoisParameter",lambda = 1) lambda(W) # lambda of this distribution is 1. lambda(W) <- 2 # lambda of this distribution is now 2.
Generates an object of class "PosSemDefSymmMatrix"
resp. of class "PosDefSymmMatrix"
.
PosSemDefSymmMatrix(mat) PosDefSymmMatrix(mat)
PosSemDefSymmMatrix(mat) PosDefSymmMatrix(mat)
mat |
A numeric positive-[semi-]definite, symmetric matrix with finite entries. |
If mat
is no matrix, as.matrix
is applied.
Object of class "PosSemDefSymmMatrix"
resp. of class "PosDefSymmMatrix"
Matthias Kohl [email protected], Peter Ruckdeschel [email protected]
PosSemDefSymmMatrix(1) PosSemDefSymmMatrix(diag(2)) PosDefSymmMatrix(1) PosDefSymmMatrix(diag(2))
PosSemDefSymmMatrix(1) PosSemDefSymmMatrix(diag(2)) PosDefSymmMatrix(1) PosDefSymmMatrix(diag(2))
The class of positive-[semi-]definite, symmetric matrices.
Objects can be created by calls of the form new("PosSemDefSymmMatrix", ...)
resp. new("PosDefSymmMatrix", ...)
.
More frequently they are created via the generating functions
PosSemDefSymmMatrix
resp. PosDefSymmMatrix
.
.Data
Object of class "matrix"
.
A numeric matrix with finite entries.
[Class "PosSemDefSymmMatrix"
, directly]
Class "matrix"
, from data part.
Class "structure"
, by class "matrix"
.
Class "array"
, by class "matrix"
.
Class "vector"
, by class "matrix", with explicit coerce.
Class "vector"
, by class "matrix", with explicit coerce.
Matthias Kohl [email protected], Peter Ruckdeschel [email protected]
PosDefSymmMatrix
, matrix-class
new("PosDefSymmMatrix", diag(2))
new("PosDefSymmMatrix", diag(2))
print/show-methods
signature(x = "UnivariateDistribution")
: returns the class of the object and its parameters
signature(x = "UnivariateDistribution")
: returns the class of the object and its parameters
prob-methods
signature(object = "BinomParameter")
: returns the slot prop
of the parameter of the distribution
signature(object = "BinomParameter")
: modifies the slot prob
of the parameter of the distribution
signature(object = "Binom")
: returns the slot prop
of the parameter of the distribution
signature(object = "Binom")
: modifies the slot prob
of the parameter of the distribution
signature(object = "NbinomParameter")
: returns the slot prop
of the parameter of the distribution
signature(object = "NbinomParameter")
: modifies the slot prob
of the parameter of the distribution
signature(object = "Nbinom")
: returns the slot prop
of the parameter of the distribution
signature(object = "Nbinom")
: modifies the slot prob
of the parameter of the distribution
signature(object = "GeomParameter")
: returns the slot prop
of the parameter of the distribution (deprecated from 1.9 on)
signature(object = "GeomParameter")
: modifies the slot prob
of the parameter of the distribution (deprecated from 1.9 on)
signature(object = "Geom")
: returns the slot prop
of the parameter of the distribution
signature(object = "Geom")
: modifies the slot prob
of the parameter of the distribution
signature(object = "DiscreteDistribution")
: returns the
(named) vector of probabilities for the support points of the distribution.
signature(object = "DiscreteDistribution")
:
generates a new object of class "DiscreteDistribution"
with
the same support as object
as well as the same
.withSim
, .withArith
, .lowerExact
,
.logExact
slots.
signature(object = "UnivarLebDecDistribution")
: returns a
matrix where n is the length of the support of
the discrete part of the distribution; the first row named
"cond"
gives the vector of probabilities for the support points of the discrete part
of the distribution (i.e.; conditional on being in the discrete part), the second
row named "abs"
is like the first one but multiplied with discreteWeight
of the distribution, hence gives the absolute probabilities of the support points;
the columns are named by the support values.
q-methods
signature(save = "Distribution")
: returns the
(left-continuous) quantile function, i.e.;
signature(object = "Distribution")
:
from distr-2.6 onwards, we provide this as a synonym for
method q
; this synonym more explicitely states that we are dealing with
the left-continuous variant of a quantile function. It is useful in particular
when used from the console in RStudio, as RStudio catches calls to
q()
and treats them separately from usual R evaluation.
The developers of RStudio have been asked to fix this and comply with standard
R evaluation which explicitely allows overloading q()
as we do it in this
package, but so far have refused to do so, as they claim overloading
q()
was insane.
Distribution-class
, q.r
require(distr) N <- Norm() q(N)(0.3) ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) q.l(N)(0.3)
require(distr) N <- Norm() q(N)(0.3) ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) q.l(N)(0.3)
q.r-methods
return the right-continuous quantile function, i.e.;
signature(object = "DiscreteDistribution")
signature(object = "AbscontDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarMixingDistribution")
DiscreteDistribution-class
UnivarLebDecDistribution-class
We compute confidence intervals for QQ plots. These can be simultaneous (to check whether the whole data set is compatible) or pointwise (to check whether each (single) data point is compatible);
qqbounds(x,D,alpha,n,withConf.pw, withConf.sim, exact.sCI=(n<100),exact.pCI=(n<100), nosym.pCI = FALSE, debug = FALSE)
qqbounds(x,D,alpha,n,withConf.pw, withConf.sim, exact.sCI=(n<100),exact.pCI=(n<100), nosym.pCI = FALSE, debug = FALSE)
x |
data to be checked for compatibility with distribution |
D |
object of class |
alpha |
confidence level |
n |
sample size |
withConf.pw |
logical; shall pointwise confidence lines be computed? |
withConf.sim |
logical; shall simultaneous confidence lines be computed? |
exact.pCI |
logical; shall pointwise CIs be determined with exact Binomial distribution? |
exact.sCI |
logical; shall simultaneous CIs be determined with exact kolmogorov distribution? |
nosym.pCI |
logical; shall we use (shortest) asymmetric CIs? |
debug |
logical; if |
Both simultaneous and pointwise confidence intervals come in a
finite-sample and an asymptotic version;
the finite sample versions will get quite slow
for large data sets x
, so in these cases the asymptotic version
will be preferrable.
For simultaneous intervals,
the finite sample version is based on C function "pkolmogorov2x"
from package stats, while the asymptotic one uses
R function pkstwo
again from package stats, both taken
from the code to ks.test
.
Both finite sample and asymptotic versions use the fact,
that the distribution of the supremal distance between the
empirical distribution and the corresponding theoretical one
(assuming data from
)
does not depend on
for continuous distribution
and leads to the Kolmogorov distribution (compare, e.g. Durbin(1973)).
In case of
with jumps, the corresponding Kolmogorov distribution
is used to produce conservative intervals.
For pointwise intervals,
the finite sample version is based on corresponding binomial distributions,
(compare e.g., Fisz(1963)), while the asymptotic one uses a CLT approximation
for this binomial distribution. In fact, this approximation is only valid
for distributions with strictly positive density at the evaluation quantiles.
In the finite sample version, the binomial distributions will in general not
be symmetric, so that, by setting nosym.pCI
to TRUE
we may
produce shortest asymmetric confidence intervals (albeit with a considerable
computational effort).
The symmetric intervals returned by default will be conservative (which also applies to distributions with jumps in this case).
For distributions with jumps or with density (nearly) equal to 0 at the
corresponding quantile, we use the approximation of (D-E(D))/sd(D)
by the standard normal at these points; this latter approximation is only
available if package distrEx is installed; otherwise the corresponding
columns will be filled with NA
.
A list with components crit
— a matrix with the lower and upper confidence
bounds, and err
a logical vector of length 2.
Component crit
is a matrix with length(x)
rows
and four columns c("sim.left","sim.right","pw.left","pw.right")
.
Entries will be set to NA
if the corresponding x
component
is not in support(D)
or if the computation method returned an error
or if the corresponding parts have not been required (if withConf.pw
or withConf.sim
is FALSE
).
err
has components pw
—do we have a non-error return value for the computation of pointwise CI's
(FALSE
if withConf.pw
is FALSE
)— and sim
—do we have a non-error return value for the computation of simultaneous CI's
(FALSE
if withConf.sim
is FALSE
).
Peter Ruckdeschel [email protected]
Durbin, J. (1973) Distribution theory for tests based on the sample distribution function. SIAM.
Fisz, M. (1963). Probability Theory and Mathematical Statistics. 3rd ed. Wiley, New York.
qqplot
from package stats – the standard QQ plot
function, ks.test
again from package stats
for the implementation of the Kolmogorov distributions;
qqplot
from package distr for
comparisons of distributions, and
qqplot
from package distrMod for comparisons
of data with models, as well as RobAStBase::qqplot
from package RobAStBase for
checking of corresponding robust esimators.
qqplot(Norm(15,sqrt(30)), Chisq(df=15)) ## uses: old.digits <- getOption("digits") on.exit(options(digits = old.digits)) options(digits = 6) set.seed(20230508) ## IGNORE_RDIFF_BEGIN qqbounds(x = rnorm(30), Norm(), alpha = 0.95, n = 30, withConf.pw = TRUE, withConf.sim = TRUE, exact.sCI = TRUE, exact.pCI = TRUE, nosym.pCI = FALSE) ## other calls: qqbounds(x = rchisq(30,df=4), Chisq(df=4), alpha = 0.95, n = 30, withConf.pw = TRUE, withConf.sim = TRUE, exact.sCI = FALSE, exact.pCI = FALSE, nosym.pCI = FALSE) qqbounds(x = rchisq(30,df=4), Chisq(df=4), alpha = 0.95, n = 30, withConf.pw = TRUE, withConf.sim = TRUE, exact.sCI = TRUE, exact.pCI= TRUE, nosym.pCI = TRUE) ## IGNORE_RDIFF_END options(digits = old.digits)
qqplot(Norm(15,sqrt(30)), Chisq(df=15)) ## uses: old.digits <- getOption("digits") on.exit(options(digits = old.digits)) options(digits = 6) set.seed(20230508) ## IGNORE_RDIFF_BEGIN qqbounds(x = rnorm(30), Norm(), alpha = 0.95, n = 30, withConf.pw = TRUE, withConf.sim = TRUE, exact.sCI = TRUE, exact.pCI = TRUE, nosym.pCI = FALSE) ## other calls: qqbounds(x = rchisq(30,df=4), Chisq(df=4), alpha = 0.95, n = 30, withConf.pw = TRUE, withConf.sim = TRUE, exact.sCI = FALSE, exact.pCI = FALSE, nosym.pCI = FALSE) qqbounds(x = rchisq(30,df=4), Chisq(df=4), alpha = 0.95, n = 30, withConf.pw = TRUE, withConf.sim = TRUE, exact.sCI = TRUE, exact.pCI= TRUE, nosym.pCI = TRUE) ## IGNORE_RDIFF_END options(digits = old.digits)
We generalize function qqplot
from package stats to
be applicable to distribution objects. In this context,
qqplot
produces a QQ plot of two distributions, i.e.; argument x
is the distribution to be checked for compatibility, and y
is the
model (-)distribution.
Graphical parameters may be given as arguments to
qqplot
.
The stats function
is just the method for signature x=ANY,y=ANY
.
In all title and axis label arguments, if withSubst
is TRUE
,
the following patterns are substituted:
"%C"
class of argument x
"%A"
deparsed argument x
"%D"
time/date-string when the plot was generated
qqplot(x, y, ...) ## S4 method for signature 'UnivariateDistribution,UnivariateDistribution' qqplot(x, y, n = 30, withIdLine = TRUE, withConf = TRUE, withConf.pw = withConf, withConf.sim = withConf, plot.it = TRUE, xlab = deparse(substitute(x)), ylab = deparse(substitute(y)), ..., width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), mfColRow = TRUE, n.CI = n, col.IdL = "red", lty.IdL = 2, lwd.IdL = 2, alpha.CI = .95, exact.pCI = (n<100), exact.sCI = (n<100), nosym.pCI = FALSE, col.pCI = "orange", lty.pCI = 3, lwd.pCI = 2, pch.pCI = par("pch"), cex.pCI = par("cex"), col.sCI = "tomato2", lty.sCI = 4, lwd.sCI = 2, pch.sCI = par("pch"), cex.sCI = par("cex"), cex.pch = par("cex"), col.pch = par("col"), jit.fac = 0, check.NotInSupport = TRUE, col.NotInSupport = "red", with.legend = TRUE, legend.bg = "white", legend.pos = "topleft", legend.cex = 0.8, legend.pref = "", legend.postf = "", legend.alpha = alpha.CI, debug = FALSE, withSubst = TRUE) ## S4 method for signature 'ANY,ANY' qqplot(x, y, plot.it = TRUE, xlab = deparse(substitute(x)), ylab = deparse(substitute(y)), ...)
qqplot(x, y, ...) ## S4 method for signature 'UnivariateDistribution,UnivariateDistribution' qqplot(x, y, n = 30, withIdLine = TRUE, withConf = TRUE, withConf.pw = withConf, withConf.sim = withConf, plot.it = TRUE, xlab = deparse(substitute(x)), ylab = deparse(substitute(y)), ..., width = 10, height = 5.5, withSweave = getdistrOption("withSweave"), mfColRow = TRUE, n.CI = n, col.IdL = "red", lty.IdL = 2, lwd.IdL = 2, alpha.CI = .95, exact.pCI = (n<100), exact.sCI = (n<100), nosym.pCI = FALSE, col.pCI = "orange", lty.pCI = 3, lwd.pCI = 2, pch.pCI = par("pch"), cex.pCI = par("cex"), col.sCI = "tomato2", lty.sCI = 4, lwd.sCI = 2, pch.sCI = par("pch"), cex.sCI = par("cex"), cex.pch = par("cex"), col.pch = par("col"), jit.fac = 0, check.NotInSupport = TRUE, col.NotInSupport = "red", with.legend = TRUE, legend.bg = "white", legend.pos = "topleft", legend.cex = 0.8, legend.pref = "", legend.postf = "", legend.alpha = alpha.CI, debug = FALSE, withSubst = TRUE) ## S4 method for signature 'ANY,ANY' qqplot(x, y, plot.it = TRUE, xlab = deparse(substitute(x)), ylab = deparse(substitute(y)), ...)
x |
object of class |
y |
object of class |
n |
numeric; number of quantiles at which to do the comparison. |
withIdLine |
logical; shall line |
withConf |
logical; shall confidence lines be plotted? |
withConf.pw |
logical; shall pointwise confidence lines be plotted? |
withConf.sim |
logical; shall simultaneous confidence lines be plotted? |
plot.it |
logical; shall be plotted at all (inherited from |
xlab |
x-label |
ylab |
y-label |
... |
further parameters for function |
width |
width (in inches) of the graphics device opened |
height |
height (in inches) of the graphics device opened |
withSweave |
logical: if |
mfColRow |
shall default partition in panels be used — defaults to |
n.CI |
numeric; number of points to be used for confidence interval |
col.IdL |
color for the identity line |
lty.IdL |
line type for the identity line |
lwd.IdL |
line width for the identity line |
alpha.CI |
confidence level |
exact.pCI |
logical; shall pointwise CIs be determined with exact Binomial distribution? |
exact.sCI |
logical; shall simultaneous CIs be determined with exact kolmogorov distribution? |
nosym.pCI |
logical; shall we use (shortest) asymmetric CIs? |
col.pCI |
color for the pointwise CI |
lty.pCI |
line type for the pointwise CI |
lwd.pCI |
line width for the pointwise CI |
pch.pCI |
symbol for points (for discrete mass points) in pointwise CI |
cex.pCI |
magnification factor for points (for discrete mass points) in pointwise CI |
col.sCI |
color for the simultaneous CI |
lty.sCI |
line type for the simultaneous CI |
lwd.sCI |
line width for the simultaneous CI |
pch.sCI |
symbol for points (for discrete mass points) in simultaneous CI |
cex.sCI |
magnification factor for points (for discrete mass points) in simultaneous CI |
cex.pch |
magnification factor for the plotted symbols |
col.pch |
color for the plotted symbols |
jit.fac |
jittering factor used for discrete distributions |
check.NotInSupport |
logical; shall we check if all |
col.NotInSupport |
logical; if preceding check |
with.legend |
logical; shall a legend be plotted? |
legend.bg |
background color for the legend |
legend.pos |
position for the legend |
legend.cex |
magnification factor for the legend |
legend.pref |
character to be prepended to legend text |
legend.postf |
character to be appended to legend text |
legend.alpha |
nominal coverage probability |
debug |
logical; if |
withSubst |
logical; if |
signature(x = "ANY", y = "ANY")
: function qqplot
from
package stats.
signature(x = "UnivariateDistribution", y = "UnivariateDistribution")
:
produces a QQ plot for two univariate distributions.
A list of elements containing the information needed to compute the
respective QQ plot, in particular it extends the elements of the
return value of function qqplot
from package stats, i.e., a
list with components x
and y
for x and y coordinates
of the plotted points; more specifically it contains
x |
The x coordinates of the points that were/would be plotted |
y |
The corresponding quantiles of the second distribution,
including |
crit |
A matrix with the lower and upper confidence bounds
(computed by |
err |
logical vector of length 2. |
(elements crit
and err
are taken from the return
value(s) of qqbounds
).
The return value allows to recover all information used to produce the plot
for later use in enhanced graphics (e.g. with ggplot).
Peter Ruckdeschel [email protected]
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
qqplot
from package stats – the standard QQ plot
function and
qqbounds
, used by qqplot
to produce confidence
intervals.
## IGNORE_RDIFF_BEGIN qqplot(Norm(15,sqrt(30)), Chisq(df=15)) ## some discrete Distributions: P <- Pois(5) B <- Binom(size=2000,prob=5/2000) qqplot(B,P) ## IGNORE_RDIFF_END ## takes too much time for R CMD check --as-cran qqplot(B,P, nosym.pCI=TRUE) ## some Lebesgue-Decomposed distributions: mylist <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart=Norm(2,2), acWeight=11/20) mylist2 <- mylist+0.1 ## IGNORE_RDIFF_BEGIN qqplot(mylist,mylist2) qqplot(mylist,mylist2,exact.pCI=FALSE,exact.sCI=FALSE) ## IGNORE_RDIFF_END ## takes too much time for R CMD check --as-cran qqplot(mylist,mylist2,nosym.pCI=TRUE) ## some ac. distribution with a gap mylist3 <- UnivarMixingDistribution(Unif(0,0.3),Unif(0.6,1),mixCoeff=c(0.8,0.2)) gaps(mylist3) mylist4 <- UnivarMixingDistribution(Unif(0,0.3),Unif(0.6,1),mixCoeff=c(0.6,0.4)) qqplot(mylist3,mylist4) qqplot(mylist3,mylist4,nosym.pCI=TRUE)
## IGNORE_RDIFF_BEGIN qqplot(Norm(15,sqrt(30)), Chisq(df=15)) ## some discrete Distributions: P <- Pois(5) B <- Binom(size=2000,prob=5/2000) qqplot(B,P) ## IGNORE_RDIFF_END ## takes too much time for R CMD check --as-cran qqplot(B,P, nosym.pCI=TRUE) ## some Lebesgue-Decomposed distributions: mylist <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart=Norm(2,2), acWeight=11/20) mylist2 <- mylist+0.1 ## IGNORE_RDIFF_BEGIN qqplot(mylist,mylist2) qqplot(mylist,mylist2,exact.pCI=FALSE,exact.sCI=FALSE) ## IGNORE_RDIFF_END ## takes too much time for R CMD check --as-cran qqplot(mylist,mylist2,nosym.pCI=TRUE) ## some ac. distribution with a gap mylist3 <- UnivarMixingDistribution(Unif(0,0.3),Unif(0.6,1),mixCoeff=c(0.8,0.2)) gaps(mylist3) mylist4 <- UnivarMixingDistribution(Unif(0,0.3),Unif(0.6,1),mixCoeff=c(0.6,0.4)) qqplot(mylist3,mylist4) qqplot(mylist3,mylist4,nosym.pCI=TRUE)
r-methods
signature(object = "Distribution")
: generates random deviates
according to the distribution
rate-methods
signature(object = "ExpParameter")
: returns the slot rate
of the parameter of the distribution
signature(object = "ExpParameter")
: modifies the slot rate
of the parameter of the distribution
signature(object = "Exp")
: returns the slot rate
of the parameter of the distribution
signature(object = "Exp")
: modifies the slot rate
of the parameter of the distribution
signature(object = "DExp")
: returns the slot rate
of the parameter of the distribution
signature(object = "DExp")
: modifies the slot rate
of the parameter of the distribution
Particular case of a one-dimensional Euclidean Space
Reals()
Reals()
Objects could theoretically be created by calls of the form new("Reals", dimension, name)
.
Usually an object of this class is not needed on its own. It is generated automatically when a univariate absolutly
continuous distribution is instantiated.
dimension
Object of class "character"
: the dimension of the space, by default = 1
name
Object of class "character"
: the name of the space, by default = "Real Space"
Class "EuclideanSpace"
, directly.
Class "rSpace"
, by class "EuclideanSpace"
.
signature(.Object = "Reals")
: initialize method
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
EuclideanSpace-class
Naturals-class
AbscontDistribution-class
R <- Reals() liesIn(R,c(0,0)) # FALSE
R <- Reals() liesIn(R,c(0,0)) # FALSE
The distribution-classes contain a slot where the sample space is stored. Typically, discrete random variables take naturals as values. rSpace is the mother-class of the class EuclideanSpace.
A virtual Class: No objects may be created from it.
name
Object of class "character"
: the name of the space
signature(object = "rSpace")
: returns the name of the space
signature(object = "rSpace")
: changes the name of the space
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Lattice-class
Naturals-class
EuclideanSpace-class
Distribution-class
function to do get empirical density, cumulative distribution and quantile function from random numbers
RtoDPQ(r, e = getdistrOption("RtoDPQ.e"), n = getdistrOption("DefaultNrGridPoints"), y = NULL)
RtoDPQ(r, e = getdistrOption("RtoDPQ.e"), n = getdistrOption("DefaultNrGridPoints"), y = NULL)
r |
the random number generator |
e |
|
n |
The number of grid points used to create the approximated functions, a higher number leads to a better result. |
y |
a (numeric) vector or |
RtoDPQ generates random numbers, by default
.
Instead of using simulated grid points, we have an optional parameter y
for using N. Horbenko's quantile trick: i.e.; on an equally spaced grid x.grid
on [0,1], apply
f(q(x)(x.grid))
and write the result to y
and produce density and cdf from this
value y
given to RtoDPQ
as argument (instead of simulating grid points).
The density is formed on the basis of
points using approxfun and density, by default
.
The cumulative distribution function and the quantile function are also created on the basis of points using
approxfun
and ecdf
. Of course, the results are usually not exact as they rely on random numbers.
RtoDPQ
returns a list of functions.
dfun |
density |
pfun |
cumulative distribution function |
qfun |
quantile function |
Use RtoDPQ
for absolutely continuous and RtoDPQ.d
for discrete distributions.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
UnivariateDistribution-class
,
density
,
approxfun
,
ecdf
set.seed(20230508) rn2 <- function(n){rnorm(n)^2} x <- RtoDPQ(r = rn2, e = 4, n = 512) # returns density, cumulative distribution and quantile function of # squared standard normal distribution ## IGNORE_RDIFF_BEGIN x$dfun(4) RtoDPQ(r = rn2, e = 5, n = 1024) # for a better result ## IGNORE_RDIFF_END rp2 <- function(n){rpois(n, lambda = 1)^2} x <- RtoDPQ.d(r = rp2, e = 5) # returns density, cumulative distribution and quantile function of # squared Poisson distribution with parameter lambda=1
set.seed(20230508) rn2 <- function(n){rnorm(n)^2} x <- RtoDPQ(r = rn2, e = 4, n = 512) # returns density, cumulative distribution and quantile function of # squared standard normal distribution ## IGNORE_RDIFF_BEGIN x$dfun(4) RtoDPQ(r = rn2, e = 5, n = 1024) # for a better result ## IGNORE_RDIFF_END rp2 <- function(n){rpois(n, lambda = 1)^2} x <- RtoDPQ.d(r = rp2, e = 5) # returns density, cumulative distribution and quantile function of # squared Poisson distribution with parameter lambda=1
function to do get empirical density, cumulative distribution and quantile function from random numbers
RtoDPQ.d(r, e = getdistrOption("RtoDPQ.e"))
RtoDPQ.d(r, e = getdistrOption("RtoDPQ.e"))
r |
the random number generator |
e |
|
RtoDPQ.d
generates random numbers, by default
RtoDPQ.e
which are used to produce a density, cdf and
quantile function.
Of course, the results are usually not exact as they rely on random numbers.
RtoDPQ returns a list of functions.
dfun |
density |
pfun |
cumulative distribution function |
qfun |
quantile function |
Use RtoDPQ for absolutely continuous and RtoDPQ.d for discrete distributions.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
UnivariateDistribution-class
,
density
,
approxfun
,
ecdf
set.seed(20230508) rn2 <- function(n){rnorm(n)^2} x <- RtoDPQ(r = rn2, e = 4, n = 512) # returns density, cumulative distribution and quantile function of # squared standard normal distribution ## IGNORE_RDIFF_BEGIN x$dfun(4) RtoDPQ(r = rn2, e = 5, n = 1024) # for a better result ## IGNORE_RDIFF_END rp2 <- function(n){rpois(n, lambda = 1)^2} x <- RtoDPQ.d(r = rp2, e = 5) # returns density, cumulative distribution and quantile function of # squared Poisson distribution with parameter lambda=1
set.seed(20230508) rn2 <- function(n){rnorm(n)^2} x <- RtoDPQ(r = rn2, e = 4, n = 512) # returns density, cumulative distribution and quantile function of # squared standard normal distribution ## IGNORE_RDIFF_BEGIN x$dfun(4) RtoDPQ(r = rn2, e = 5, n = 1024) # for a better result ## IGNORE_RDIFF_END rp2 <- function(n){rpois(n, lambda = 1)^2} x <- RtoDPQ.d(r = rp2, e = 5) # returns density, cumulative distribution and quantile function of # squared Poisson distribution with parameter lambda=1
function to do get empirical density, cumulative distribution and quantile function from random numbers
RtoDPQ.LC(r, e = getdistrOption("RtoDPQ.e"), n = getdistrOption("DefaultNrGridPoints"), y = NULL)
RtoDPQ.LC(r, e = getdistrOption("RtoDPQ.e"), n = getdistrOption("DefaultNrGridPoints"), y = NULL)
r |
the random number generator |
e |
|
n |
The number of grid points used to create the approximated functions, a higher number leads to a better result. |
y |
a (numeric) vector or |
RtoDPQ.LC generates random numbers, by default
.
Replicates are assumed to be part of the discrete part, unique values to be
part of the a.c. part of the distribution. For the replicated ones,
we generate a discrete distribution by a call to DiscreteDistribution
.
For the a.c. part, similarly to RtoDPQ
we have an optional parameter y
for using N. Horbenko's quantile trick: i.e.; on an equally spaced grid x.grid
on [0,1], apply
f(q(x)(x.grid))
, write the result to y
and use these
values instead of simulated ones.
The a.c. density is formed on the basis of
points using approxfun and density (applied to the unique values), by default
.
The cumulative distribution function is based on all random variables,
and, as well as the quantile function, is also created on the basis of points using
approxfun
and ecdf
. Of course, the results are usually not exact as they rely on random numbers.
RtoDPQ.LC
returns an object of class UnivarLebDecDistribution
.
Use RtoDPQ
for absolutely continuous and RtoDPQ.d
for discrete distributions.
Peter Ruckdeschel [email protected]
UnivariateDistribution-class
,
density
,
approxfun
,
ecdf
set.seed(20230508) rn2 <- function(n)ifelse(rbinom(n,1,0.3),rnorm(n)^2,rbinom(n,4,.3)) x <- RtoDPQ.LC(r = rn2, e = 4, n = 512) plot(x) # returns density, cumulative distribution and quantile function of # squared standard normal distribution ## IGNORE_RDIFF_BEGIN d.discrete(x)(4) ## IGNORE_RDIFF_END x2 <- RtoDPQ.LC(r = rn2, e = 5, n = 1024) # for a better result plot(x2)
set.seed(20230508) rn2 <- function(n)ifelse(rbinom(n,1,0.3),rnorm(n)^2,rbinom(n,4,.3)) x <- RtoDPQ.LC(r = rn2, e = 4, n = 512) plot(x) # returns density, cumulative distribution and quantile function of # squared standard normal distribution ## IGNORE_RDIFF_BEGIN d.discrete(x)(4) ## IGNORE_RDIFF_END x2 <- RtoDPQ.LC(r = rn2, e = 5, n = 1024) # for a better result plot(x2)
scale-methods
signature(object = "GammaParameter")
: returns the slot scale
of the parameter of the distribution
signature(object = "GammaParameter")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Gammad")
: returns the slot scale
of the parameter of the distribution
signature(object = "Gammad")
: modifies the slot scale
of the parameter of the distribution
signature(object = "LogisParameter")
: returns the slot scale
of the parameter of the distribution
signature(object = "LogisParameter")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Logis")
: returns the slot scale
of the parameter of the distribution
signature(object = "Logis")
: modifies the slot scale
of the parameter of the distribution
signature(object = "WeibullParameter")
: returns the slot scale
of the parameter of the distribution
signature(object = "WeibullParameter")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Weibull")
: returns the slot scale
of the parameter of the distribution
signature(object = "Weibull")
: modifies the slot scale
of the parameter of the distribution
signature(object = "CauchyParameter")
: returns the slot scale
of the parameter of the distribution
signature(object = "CauchyParameter")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Cauchy")
: returns the slot scale
of the parameter of the distribution
signature(object = "Cauchy")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Chisq")
: if ncp(object)
is 0, a Chi-squared distribution is also a Gamma distribution;
in this case, scale
returns 2 else an error;
sd-methods
signature(x = "Any")
: see sd
signature(x = "NormParameter")
: returns the slot sd of the parameter of the distribution
signature(object = "NormParameter")
: modifies the slot sd of the parameter of the distribution
signature(x = "Norm")
: returns the slot sd of the parameter of the distribution
signature(object = "Norm")
: modifies the slot sd of the parameter of the distribution
sdlog-methods
signature(object = "LnormParameter")
: returns the slot sdlog
of the parameter of the distribution
signature(object = "LnormParameter")
: modifies the slot sdlog
of the parameter of the distribution
signature(object = "Lnorm")
: returns the slot sdlog
of the parameter of the distribution
signature(object = "Lnorm")
: modifies the slot sdlog
of the parameter of the distribution
shape-methods
signature(object = "GammaParameter")
: returns the slot shape
of a parameter of a Gamma distribution
signature(object = "GammaParameter")
: modifies the slot shape
of a parameter of a Gamma distribution
signature(object = "Gammad")
: returns the slot shape
of the parameter slot of a Gamma distribution
signature(object = "Gammad")
: modifies the slot shape of the parameter slot of a Gamma distribution
signature(object = "WeibullParameter")
: returns the slot shape
of a parameter of a Weibull distribution
signature(object = "WeibullParameter")
: modifies the slot shape
of a parameter of a Weibull distribution
signature(object = "Weibull")
: returns the slot shape
of the parameter slot of the distribution
signature(object = "Weibull")
: modifies the slot shape
of the parameter slot of the distribution
signature(object = "Chisq")
: if ncp(object)
is 0, a Chi-squared distribution is also a Gamma distribution;
in this case, shape
returns df(object)/2
else an error;
signature(object = "Exp")
: returns the slot shape
of the parameter slot of the Exp distribution (=1)
shape-methods
signature(object = "BetaParameter")
: returns the slot shape1
of the parameter of the distribution
signature(object = "BetaParameter")
: modifies the slot shape1
of the parameter of the distribution
signature(object = "Beta")
: returns the slot shape1
of the parameter of the distribution
signature(object = "Beta")
: modifies the slot shape1
of the parameter of the distribution
shape-methods
signature(object = "BetaParameter")
: returns the slot shape2 of the parameter of the distribution
signature(object = "BetaParameter")
: modifies the slot shape2 of the parameter of the distribution
signature(object = "Beta")
: returns the slot shape2 of the parameter of the distribution
signature(object = "Beta")
: modifies the slot shape2 of the parameter of the distribution
simplifyD-methods
simplifyD(object)
simplifyD(object)
object |
distribution object |
generating functions UnivarMixingDistribution
Minimum
, Maximum
, Truncate
, and
Huberize
have an argument withSimplify
which
decides whether the respective result is filtered by/piped through a
call to simplifyD
.
By default this argument is set to the distr-option
getdistrOption("simplifyD"
(for the inspection and modification of such
global options see distroptions
). Depending on whether or not this
option is TRUE
, also arithmetic operations "+"
, "*"
, "/"
,
"^"
and group Math
give results filtered by/piped through a call
to simplifyD
.
the corresponding, possibly simplified distribution
signature(object = "AbscontDistribution")
:
returns object
unchanged
signature(object = "DiscreteDistribution")
:
returns object
unchanged
signature(object = "UnivarLebDecDistribution")
:
checks whether acWeight
or discreteWeight
is approximately
(i.e.; up to getdistrOption("TruncQuantile")
) zero and if so,
accordingly returns discretePart(object)
or acPart(object)
,
respectively.
signature(object = "UnivarMixingDistribution")
:
returns the flattened version of object
(using flat.mix
).
before doing so, it checks whether any component carries weight approximately
(i.e.; up to getdistrOption("TruncQuantile")
) one (in slot mixCoeff
)
and if so, returns this component; else, if not all weights are below
getdistrOption("TruncQuantile")
), it filters out those components
with weight less than getdistrOption("TruncQuantile")
).
set.seed(123) Mix1 <- UnivarMixingDistribution(Norm(),Binom(2,.3), UnivarLebDecDistribution(acPart = Chisq(df = 2), discretePart = Nbinom(3,.09), acWeight = 0.3), Norm()-Chisq(df=3), mixCoeff=c(0,0,0.2,0.8), withSimplify = FALSE) Mix2 <- UnivarMixingDistribution(Norm(),Mix1, DExp(2), mixCoeff = c(0,0.2,0.8), withSimplify = FALSE) Mix2 simplifyD(Mix2)
set.seed(123) Mix1 <- UnivarMixingDistribution(Norm(),Binom(2,.3), UnivarLebDecDistribution(acPart = Chisq(df = 2), discretePart = Nbinom(3,.09), acWeight = 0.3), Norm()-Chisq(df=3), mixCoeff=c(0,0,0.2,0.8), withSimplify = FALSE) Mix2 <- UnivarMixingDistribution(Norm(),Mix1, DExp(2), mixCoeff = c(0,0.2,0.8), withSimplify = FALSE) Mix2 simplifyD(Mix2)
simplifyr-methods
signature(.Object = "UnivariateDistribution")
: After several transformations of a given distribution it may take quite
a long time to generate random numbers from the resulting distribution. simplifyr generates a certain number,
by default , of random numbers once. This pool of random numbers forms the basis for further uses of the
r-method. That is, random numbers are generated by sampling with replacement out of this pool.
If you want to generate many random numbers, you should use simplifyr with a big size to be sure, that your numbers are really random.
F <- ( Norm() + Binom() + Pois() + Exp() ) * 2 - 10 ## IGNORE_RDIFF_BEGIN system.time(r(F)(10^6)) ## IGNORE_RDIFF_END simplifyr(F, size = 10^6) ## IGNORE_RDIFF_BEGIN system.time(r(F)(10^6)) ## IGNORE_RDIFF_END
F <- ( Norm() + Binom() + Pois() + Exp() ) * 2 - 10 ## IGNORE_RDIFF_BEGIN system.time(r(F)(10^6)) ## IGNORE_RDIFF_END simplifyr(F, size = 10^6) ## IGNORE_RDIFF_BEGIN system.time(r(F)(10^6)) ## IGNORE_RDIFF_END
size-methods
signature(object = "BinomParameter")
: returns the slot size
of the parameter of the distribution
signature(object = "BinomParameter")
: modifies the slot size
of the parameter of the distribution
signature(object = "Binom")
: returns the slot size
of the parameter of the distribution
signature(object = "Binom")
: modifies the slot size
of the parameter of the distribution
signature(object = "NbinomParameter")
: returns the slot size
of the parameter of the distribution
signature(object = "NbinomParameter")
: modifies the slot size
of the parameter of the distribution
signature(object = "Nbinom")
: returns the slot size
of the parameter of the distribution
signature(object = "Nbinom")
: modifies the slot size
of the parameter of the distribution
signature(object = "Geom")
: returns the slot size
of the parameter of the distribution
solve-methods using generalized inverses for various types of matrices
solve(a,b, ...) ## S4 method for signature 'ANY,ANY' solve(a, b, generalized = getdistrOption("use.generalized.inverse.by.default"), tol = 1e-10) ## S4 method for signature 'PosSemDefSymmMatrix,ANY' solve(a, b, generalized = getdistrOption("use.generalized.inverse.by.default"), tol = 1e-10) ## S4 method for signature 'PosDefSymmMatrix,ANY' solve(a, b, tol = 1e-10)
solve(a,b, ...) ## S4 method for signature 'ANY,ANY' solve(a, b, generalized = getdistrOption("use.generalized.inverse.by.default"), tol = 1e-10) ## S4 method for signature 'PosSemDefSymmMatrix,ANY' solve(a, b, generalized = getdistrOption("use.generalized.inverse.by.default"), tol = 1e-10) ## S4 method for signature 'PosDefSymmMatrix,ANY' solve(a, b, tol = 1e-10)
a |
matrix to be inverted / to be solved for RHS. |
b |
a numeric or complex vector or matrix giving the right-hand
side(s) of the linear system. If missing, |
... |
further arguments to be passed to specific methods (see |
generalized |
logical: should generalized / Moore-Penrose inverses be used? By default uses
the corresponding global option to be set by |
tol |
the tolerance for detecting linear dependencies in the
columns of |
The method for the Moore-Penrose inverse for
signature(a = "PosSemDefSymmMatrix", b = "ANY")
uses eigen
to find the eigenvalue
decomposition of a
and then simply "pseudo-inverts" the corresponding diagonal matrix built from
eigen(a)$values
, while for signature(a = "ANY", b = "ANY")
it uses the svd
decomposition of a
and then simply "pseudo-inverts" the corresponding diagonal matrix built from
svd(a)$d
.
signature(a = "ANY", b = "ANY")
: tries to evaluate solve.default
method from base in classical way;
if this gives an error, this one is returned if generalized
is TRUE
, else it will then
return where
is the pseudo or Moore-Penrose inverse of
.
signature(a = "PosSemDefSymmMatrix", b = "ANY")
: evaluates where
is the pseudo or Moore-Penrose
inverse of
.
signature(a = "PosDefSymmMatrix", b = "ANY")
: evaluates solve method from base in classical way.
Peter Ruckdeschel [email protected]
solve
for the default method, eigen
and svd
for the pseudo inversion
Generates an object of class "SphericalSymmetry"
.
SphericalSymmetry(SymmCenter = 0)
SphericalSymmetry(SymmCenter = 0)
SymmCenter |
numeric: center of symmetry |
Object of class "SphericalSymmetry"
Matthias Kohl [email protected]
SphericalSymmetry-class
, DistributionSymmetry-class
SphericalSymmetry() ## The function is currently defined as function(SymmCenter = 0){ new("SphericalSymmetry", SymmCenter = SymmCenter) }
SphericalSymmetry() ## The function is currently defined as function(SymmCenter = 0){ new("SphericalSymmetry", SymmCenter = SymmCenter) }
Class for spherical symmetric distributions.
Objects can be created by calls of the form new("SphericalSymmetry")
.
More frequently they are created via the generating function
SphericalSymmetry
. Spherical symmetry for instance leads to
a simplification for the computation of optimally robust influence curves.
type
Object of class "character"
:
contains “spherical symmetric distribution”
SymmCenter
Object of class "numeric"
:
center of symmetry
Class "EllipticalSymmetry"
, directly.
Class "DistributionSymmetry"
, by class "EllipticalSymmetry"
.
Class "Symmetry"
, by class "EllipticalSymmetry"
.
Matthias Kohl [email protected]
SphericalSymmetry
, DistributionSymmetry-class
new("SphericalSymmetry")
new("SphericalSymmetry")
sqrt-methods using generalized inverses for p.s.d. matrices
## S4 method for signature 'PosSemDefSymmMatrix' sqrt(x)
## S4 method for signature 'PosSemDefSymmMatrix' sqrt(x)
x |
a p.s.d. matrix (of class |
signature(x = "PosSemDefSymmMatrix")
: produces a symmetric,
p.s.d. matrix such that
.
Peter Ruckdeschel [email protected]
Creates definitions for accessor and replacement functions of an given class.
standardMethods(class, writetofile = FALSE, directory)
standardMethods(class, writetofile = FALSE, directory)
class |
the class for which accessor and replacement functions are to be produced, given as a string |
writetofile |
logical value, indicating wheter output is to be written to a file |
directory |
if writetofile = TRUE, the output is written to a file in the given directory, the name of the file starting with "classname" and ending with "StandardMethods.txt" |
no value is returned
Thomas Stabla [email protected]
setClass("testclass", representation(a = "numeric", b = "character")) standardMethods("testclass")
setClass("testclass", representation(a = "numeric", b = "character")) standardMethods("testclass")
support-methods
signature(object =
"DiscreteDistribution")
: returns the support
Class of symmetries of various objects.
A virtual Class: No objects may be created from it.
type
Object of class "character"
:
discribes type of symmetry.
SymmCenter
Object of class "ANY"
:
center of symmetry.
signature(object = "Symmetry")
:
accessor function for slot type
signature(object = "Symmetry")
:
accessor function for slot SymmCenter
signature(object = "Symmetry")
Matthias Kohl [email protected]
DistributionSymmetry-class
, OptionalNumeric-class
The distribution with
df
degrees of
freedom has density
for all real .
It has mean
(for
) and
variance
(for
).
C.f.
rt
Objects can be created by calls of the form Td(df)
.
This object is a distribution.
img
Object of class "Reals"
: The domain of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "TParameter"
: the parameter of this distribution (df),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rt
)
d
Object of class "function"
: density function (calls function dt
)
p
Object of class "function"
: cumulative function (calls function pt
)
q
Object of class "function"
: inverse of the cumulative function (calls function qt
)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Td")
: initialize method
signature(object = "Td")
: returns the slot df of the parameter of the distribution
signature(object = "Td")
: modifies the slot df of the parameter of the distribution
signature(object = "Td")
: returns the slot ncp of the parameter of the distribution
signature(object = "Td")
: modifies the slot ncp of the parameter of the distribution
For R Version <2.3.0
ad hoc methods are provided for slots q
, r
if ncp!=0
;
for R Version >=2.3.0
the methods from package stats are used.
The general non-central
with parameters
= (df, ncp)
is defined as a the distribution of
where
and
are independent random
variables,
, and
is chi-squared, see
rchisq
.
The most used applications are power calculations for -tests:
Let
where
is the
mean
and the sample standard
deviation (
sd
) of which are i.i.d.
.
Then
is distributed as non-centrally
with
df
degrees of freedom and non-centrality parameter
ncp
.
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
TParameter-class
,
AbscontDistribution-class
,
Reals-class
,
rt
T <- Td(df = 1) # T is a t distribution with df = 1. r(T)(1) # one random number generated from this distribution, e.g. -0.09697573 d(T)(1) # Density of this distribution is 0.1591549 for x = 1. p(T)(1) # Probability that x < 1 is 0.75. q(T)(.1) # Probability that x < -3.077684 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) df(T) # df of this distribution is 1. df(T) <- 2 # df of this distribution is now 2. Tn <- Td(df = 1, ncp = 5) # T is a noncentral t distribution with df = 1 and ncp = 5. d(Tn)(1) ## from R 2.3.0 on ncp no longer ignored...
T <- Td(df = 1) # T is a t distribution with df = 1. r(T)(1) # one random number generated from this distribution, e.g. -0.09697573 d(T)(1) # Density of this distribution is 0.1591549 for x = 1. p(T)(1) # Probability that x < 1 is 0.75. q(T)(.1) # Probability that x < -3.077684 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) df(T) # df of this distribution is 1. df(T) <- 2 # df of this distribution is now 2. Tn <- Td(df = 1, ncp = 5) # T is a noncentral t distribution with df = 1 and ncp = 5. d(Tn)(1) ## from R 2.3.0 on ncp no longer ignored...
The parameter of a t distribution, used by Td-class
Objects can be created by calls of the form new("TParameter", df, ncp)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class
Td
is instantiated.
df
Object of class "numeric"
: the degrees of freedom of a T distribution
ncp
Object of class "numeric"
: the noncentrality parameter of a T distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "TParameter")
: initialize method
signature(object = "TParameter")
: returns the slot df
of the parameter of the distribution
signature(object = "TParameter")
: modifies the slot df
of the parameter of the distribution
signature(object = "TParameter")
: returns the slot ncp
of the parameter of the distribution
signature(object = "TParameter")
: modifies the slot ncp
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("TParameter",df=1, ncp = 0) df(W) # df of this distribution is 1. df(W) <- 2 # df of this distribution is now 2.
W <- new("TParameter",df=1, ncp = 0) df(W) # df of this distribution is 1. df(W) <- 2 # df of this distribution is now 2.
Truncate-methods
Truncate(object, ...) ## S4 method for signature 'AbscontDistribution' Truncate(object, lower = -Inf, upper = Inf) ## S4 method for signature 'DiscreteDistribution' Truncate(object, lower= -Inf, upper = Inf) ## S4 method for signature 'LatticeDistribution' Truncate(object, lower= -Inf, upper = Inf) ## S4 method for signature 'UnivarLebDecDistribution' Truncate(object, lower = -Inf, upper = Inf, withSimplify = getdistrOption("simplifyD"))
Truncate(object, ...) ## S4 method for signature 'AbscontDistribution' Truncate(object, lower = -Inf, upper = Inf) ## S4 method for signature 'DiscreteDistribution' Truncate(object, lower= -Inf, upper = Inf) ## S4 method for signature 'LatticeDistribution' Truncate(object, lower= -Inf, upper = Inf) ## S4 method for signature 'UnivarLebDecDistribution' Truncate(object, lower = -Inf, upper = Inf, withSimplify = getdistrOption("simplifyD"))
object |
distribution object |
... |
not yet used; takes up |
lower |
numeric; lower truncation point |
upper |
numeric; upper truncation point |
withSimplify |
logical; is result to be piped through a call to
|
the corresponding distribution of the truncated random variable
signature(object = "AbscontDistribution")
:
returns the distribution of min(upper,max(X,lower))
conditioned to lower<=X<=upper
, if X
is
distributed according to object
;
if slot .logExact
of argument object
is TRUE
and if either there is only one-sided truncation or both truncation
points lie on the same side of the median, we use this representation
to enhance the range of applicability, in particular, for slot r
,
we profit from Peter Dalgaard's clever log-tricks as indicated in
https://stat.ethz.ch/pipermail/r-help/2008-September/174321.html. To this
end we use the internal functions
(i.e.; non exported to namespace) .trunc.up
and
.trunc.low
which provide functional slots r,d,p,q
for
one-sided truncation. In case of two sided truncation, we simply use one-sided
truncation successively — first left and then right in case we are right of
the median, and the other way round else;
the result is again of class "AbscontDistribution"
;
signature(object = "DiscreteDistribution")
:
returns the distribution of min(upper,max(X,lower))
conditioned to lower<=X<=upper
, if X
is
distributed according to object
;
the result is again of class "DiscreteDistribution"
signature(object = "LatticeDistribution")
:
if length of the corresp. lattice
is infinite and
slot .logExact
of argument object
is TRUE
,
we proceed similarly as in case of AbscontDistribution
, also
using internal functions .trunc.up
and .trunc.low
;
else we use the corresponding "DiscreteDistribution"
method;
the result is again of class "LatticeDistribution"
signature(object = "UnivarLebDecDistribution")
:
returns the distribution of min(upper,max(X,lower))
conditioned to lower<=X<=upper
, if X
is
distributed according to object
;
the result is again of class "UnivarLebDecDistribution"
plot(Truncate(Norm(),lower=-1,upper=2)) TN <- Truncate(Norm(),lower=15,upper=15.7) ### remarkably right! plot(TN) r(TN)(30) TNG <- Truncate(Geom(prob=0.05),lower=325,upper=329) ### remarkably right! plot(TNG)
plot(Truncate(Norm(),lower=-1,upper=2)) TN <- Truncate(Norm(),lower=15,upper=15.7) ### remarkably right! plot(TN) r(TN)(30) TNG <- Truncate(Geom(prob=0.05),lower=325,upper=329) ### remarkably right! plot(TNG)
The uniform distribution has density
for , by default
,
, by default
.
C.f.
runif
Objects can be created by calls of the form Unif(Min, Max)
.
This object is a uniform distribution.
img
Object of class "Reals"
: The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "UnifParameter"
: the parameter of this distribution (Min and Max),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function runif
)
d
Object of class "function"
: density function (calls function dunif
)
p
Object of class "function"
: cumulative function (calls function punif
)
q
Object of class "function"
: inverse of the cumulative function (calls function qunif
)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
By means of setIs
, R “knows” that a distribution object obj
of class "Unif"
with Min 0 and Max 1 also is
a Beta distribution with parameters shape1 = 1, shape2 = 1, ncp = 0
.
signature(.Object = "Unif")
: initialize method
signature(object = "Unif")
: returns the slot Min
of the parameter of the distribution
signature(object = "Unif")
: modifies the slot Min
of the parameter of the distribution
signature(object = "Unif")
: returns the slot Max
of the parameter of the distribution
signature(object = "Unif")
: modifies the slot Max
of the parameter of the distribution
signature(e1 = "Unif", e2 = "numeric")
: multiplication of this uniform distribution
by an object of class ‘numeric’
signature(e1 = "Unif", e2 = "numeric")
: addition of this uniform distribution
to an object of class ‘numeric’
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
UnifParameter-class
AbscontDistribution-class
Reals-class
runif
U <- Unif(Min=0,Max=2) # U is a uniform distribution with Min=0 and Max=2. r(U)(1) # one random number generated from this distribution, e.g. 1.984357 d(U)(1) # Density of this distribution is 0.5 for x=1. p(U)(1) # Probability that x<1 is 0.5. q(U)(.1) # Probability that x<0.2 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) Min(U) # Min of this distribution is 0. Min(U) <- 1 # Min of this distribution is now 1. Min(U) # Min of this distribution is 1. Min(U) <- 0 is(U/2,"Beta") # yes V <- U/2; as(V,"Beta")
U <- Unif(Min=0,Max=2) # U is a uniform distribution with Min=0 and Max=2. r(U)(1) # one random number generated from this distribution, e.g. 1.984357 d(U)(1) # Density of this distribution is 0.5 for x=1. p(U)(1) # Probability that x<1 is 0.5. q(U)(.1) # Probability that x<0.2 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) Min(U) # Min of this distribution is 0. Min(U) <- 1 # Min of this distribution is now 1. Min(U) # Min of this distribution is 1. Min(U) <- 0 is(U/2,"Beta") # yes V <- U/2; as(V,"Beta")
The parameter of a uniform distribution, used by Unif-class
Objects can be created by calls of the form new("UnifParameter", Max, Min)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class
Unif
is instantiated.
Max
Object of class "numeric"
: the Max of a uniform distribution
Min
Object of class "numeric"
: the Min of a uniform distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "UnifParameter")
: initialize method
signature(object = "UnifParameter")
: returns the slot Min
of the parameter of the distribution
signature(object = "UnifParameter")
: modifies the slot Min
of the parameter of the distribution
signature(object = "UnifParameter")
: returns the slot Max
of the parameter of the distribution
signature(object = "UnifParameter")
: modifies the slot Max
of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("UnifParameter",Min=0,Max=1) Max(W) # Max of this distribution is 1. Max(W) <- 2 # Max of this distribution is now 2.
W <- new("UnifParameter",Min=0,Max=1) Max(W) # Max of this distribution is 1. Max(W) <- 2 # Max of this distribution is now 2.
The parameter of a univariate normal distribution, used by Norm-class
Objects can be created by calls of the form new("NormParameter", sd, mean)
.
Usually an object of this class is not needed on its own, it is
generated automatically when an object of the class Norm is
instantiated.
sd
Object of class "numeric"
:
the sd of a univariate normal distribution
mean
Object of class "numeric"
:
the mean of a univariate normal distribution
name
Object of class "character"
:
a name / comment for the parameters
Class "NormParameter"
, directly.
Class "Parameter"
, by class "NormParameter"
.
signature(.Object = "UniNormParameter")
:
initialize method
signature(object = "UniNormParameter")
:
returns the slot mean of the parameter of the distribution
signature(object = "UniNormParameter")
:
modifies the slot mean of the parameter of the distribution
signature(object = "UniNormParameter")
:
returns the slot sd of the parameter of the distribution
signature(object = "UniNormParameter")
:
modifies the slot sd of the parameter of the distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Norm-class
NormParameter-class
Parameter-class
W <- new("UniNormParameter", mean = 0, sd = 1) sd(W) # sd of this distribution is 1 sd(W) <- 2 # sd of this distribution is now 2
W <- new("UniNormParameter", mean = 0, sd = 1) sd(W) # sd of this distribution is 1 sd(W) <- 2 # sd of this distribution is now 2
Generates an object of class "UnivarDistrList"
.
UnivarDistrList(..., Dlist)
UnivarDistrList(..., Dlist)
... |
Objects of class |
Dlist |
an optional list or object of class |
Object of class "UnivarDistrList"
Matthias Kohl [email protected]
DistrList-class
, UnivarDistrList-class
,
UnivarDistrList
(DL <- UnivarDistrList(Norm(), Exp(), Pois())) plot(DL) as(Norm(), "UnivarDistrList") ## The function is currently defined as function(...){ new("UnivarDistrList", list(...)) }
(DL <- UnivarDistrList(Norm(), Exp(), Pois())) plot(DL) as(Norm(), "UnivarDistrList") ## The function is currently defined as function(...){ new("UnivarDistrList", list(...)) }
Create a list of univariate distributions
Objects can be created by calls of the form new("UnivarDistrList", ...)
.
More frequently they are created via the generating function
DistrList
.
.Data
Object of class "list"
.
A list of univariate distributions.
Class "DistrList"
, directly.
Class "list"
, by class "DistrList"
.
Class "vector"
, by class "DistrList"
.
signature(from = "UnivariateDistribution", to = "UnivarDistrList")
:
create a UnivarDistrList
object from a univariate distribution
Matthias Kohl [email protected]
UnivarDistrList
, DistrList-class
,
UnivariateDistribution-class
(DL <- new("UnivarDistrList", list(Norm(), Exp()))) plot(DL) as(Norm(), "UnivarDistrList")
(DL <- new("UnivarDistrList", list(Norm(), Exp()))) plot(DL) as(Norm(), "UnivarDistrList")
The UnivariateDistribution-class is the mother-class of the classes AbscontDistribution and DiscreteDistribution.
Objects can be created by calls of the form new("UnivariateDistribution")
.
img
Object of class "Reals"
:
the space of the image of this distribution which has dimension 1
and the name "Real Space"
param
Object of class "Parameter"
:
the parameter of this distribution
r
Object of class "function"
:
generates random numbers
d
Object of class "function"
:
density function
p
Object of class "function"
:
cumulative distribution function
q
Object of class "function"
:
quantile function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "Distribution"
, directly.
signature(.Object = "UnivariateDistribution")
:
initialize method
signature(x = "UnivariateDistribution")
:
returns the dimension of the support of the distribution
signature(e1 = "UnivariateDistribution")
:
application of ‘-’ to this univariate distribution
signature(e1 = "UnivariateDistribution", e2 = "numeric")
:
multiplication of this univariate distribution by an object of class ‘numeric’
signature(e1 = "UnivariateDistribution", e2 = "numeric")
:
division of this univariate distribution by an object of class ‘numeric’
signature(e1 = "UnivariateDistribution", e2 = "numeric")
:
addition of this univariate distribution to an object of class ‘numeric’
signature(e1 = "UnivariateDistribution", e2 = "numeric")
:
subtraction of an object of class ‘numeric’ from this univariate distribution
signature(e1 = "numeric", e2 = "UnivariateDistribution")
:
multiplication of this univariate distribution by an object of class ‘numeric’
signature(e1 = "numeric", e2 = "UnivariateDistribution")
:
addition of this univariate distribution to an object of class ‘numeric’
signature(e1 = "numeric", e2 = "UnivariateDistribution")
:
subtraction of this univariate distribution from an object of class ‘numeric’
signature(e1 = "UnivariateDistribution", e2 = "UnivariateDistribution")
:
Convolution of two univariate distributions. The slots p, d and q are approximated by grids.
signature(e1 = "UnivariateDistribution", e2 = "UnivariateDistribution")
:
Convolution of two univariate distributions. The slots p, d and q are approximated by grids.
signature(object = "UnivariateDistribution")
:
simplifies the r-method of a distribution, see there for further information
signature(object = "UnivariateDistribution")
:
returns the class of the object and its parameters
signature(object = "UnivariateDistribution")
:
as print
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
Parameter-class
Distribution-class
AbscontDistribution-class
DiscreteDistribution-class
Reals-class
RtoDPQ
simplifyr-methods
Generates an object of class "UnivarLebDecDistribution"
.
UnivarLebDecDistribution(acPart, discretePart, acWeight, discreteWeight, r = NULL, e = NULL, n = NULL, y = NULL)
UnivarLebDecDistribution(acPart, discretePart, acWeight, discreteWeight, r = NULL, e = NULL, n = NULL, y = NULL)
acPart |
Object of class |
discretePart |
Object of class |
acWeight |
Object of class |
discreteWeight |
Object of class |
r |
optional argument; if given, this is a random number generator as function
|
e |
optional argument; if argument |
n |
optional argument; if argument |
y |
a (numeric) vector or |
At least one of arguments discretePart
, acPart
, or r
must be given; if the first two are missing, slots are filled by a call
to RtoDPQ.LC
. For this purpose argument r
is used together
with arguments e
and n
. If the latter are missing they are
filled with getdistrOption("RtoDPQ.e")
and
getdistrOption("DefaultNrGridPoints")
, respectively.
For the a.c. part, similarly to RtoDPQ
we have an optional
parameter y
for using N. Horbenko's quantile trick: i.e.; on an
equally spaced grid x.grid
on [0,1], apply
f(q(x)(x.grid))
, write the result to y
and use these
values instead of simulated ones.
If argument discretePart
is missing but acPart
is not,
discreteWeight
is set to 0 and discretePart
is set to Dirac(0)
.
If argument acPart
is missing but discretePart
is not,
acWeight
is set to 0 and discretePart
is set to Norm()
.
If both arguments acPart
and discretePart
are given,
at least one of arguments discreteWeight
and acWeight
must
be given and lie in [0,1], else an error is thrown.
If only one argument acWeight
or discreteWeight
is given
the other one is gotten as 1-[ac/discrete]Weight.
Else if both are given, they must sum up to 1.
If a weight is smaller than getdistrOption("TruncQuantile")
, it
is set to 0.
Object of class "UnivarLebDecDistribution"
.
Peter Ruckdeschel [email protected]
UnivarLebDecDistribution-class
,
simplifyD
mylist <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart=Norm(2,2), acWeight=11/20) mylist
mylist <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart=Norm(2,2), acWeight=11/20) mylist
UnivarLebDecDistribution
-class is a class to formalize
a Lebesgue decomposed distribution with a discrete and an
absolutely continuous part; it is a subclass to
class UnivarMixingDistribution
.
Objects can be created by calls of the form
new("UnivarLebDecDistribution", ...)
.
More frequently they are created via the generating function
UnivarLebDecDistribution
.
mixCoeff
Object of class "numeric"
: a vector of length
2 of probabilities for the respective a.c. and discrete part of
the object
mixDistr
Object of class "UnivarDistrList"
: a list of
univariate distributions containing the a.c. and discrete components; must be of
length 2; the first component must be of class "AbscontDistribution"
,
the second of class "DiscreteDistribution"
.
img
Object of class "Reals"
: the space of the image of this distribution which has dimension 1
and the name "Real Space"
param
Object of class "Parameter"
: the parameter of this distribution, having only the
slot name "Parameter of a discrete distribution"
r
Object of class "function"
: generates random numbers
d
fixed to NULL
p
Object of class "function"
: cumulative distribution function
q
Object of class "function"
: quantile function
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
support
numeric vector — the support slot of the discrete part
gaps
(numeric) matrix or NULL
; — the gaps slot of
the absolutely continuous part
Class "UnivarMixingDistribution"
, directly;
class "UnivariateDistribution"
by class "UnivarMixingDistribution"
class "Distribution"
by class "UnivariateDistribution"
.
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
signature(object = "UnivarLebDecDistribution")
accessor to
slot p
of acPart(object)
, possibly weighted
by acWeight(object)
;
it has an extra argument CondOrAbs
with default value
"cond"
which if it does not partially match
(by pmatch
) "abs"
, returns exactly
slot p
of acPart(object)
else weighted by
acWeight(object)
.
signature(object = "UnivarLebDecDistribution")
accessor to
slot d
of the absolutely continuous part of
the distribution, possibly weighted by acWeight(object)
;
it has an extra argument CondOrAbs
which acts as the one
in p.ac
.
signature(object = "UnivarLebDecDistribution")
accessor to
slot q
of acPart(object)
.
signature(object = "UnivarLebDecDistribution")
accessor to
slot q
of acPart(object)
.
signature(object = "UnivarLebDecDistribution")
accessor to slot p
of discretePart(object)
,
possibly weighted by discreteWeight(object)
;
it has an extra argument CondOrAbs
which acts
as the one in p.ac
.
signature(object = "UnivarLebDecDistribution")
accessor to slot d
of discretePart(object)
,
possibly weighted by discreteWeight(object)
;
it has an extra argument CondOrAbs
which acts as
the one in p.ac
.
signature(object = "UnivarLebDecDistribution")
accessor to slot q
of discretePart(object)
.
signature(object = "UnivarLebDecDistribution")
accessor to slot r
of discretePart(object)
.
signature(from = "AffLinUnivarLebDecDistribution", to = "UnivarLebDecDistribution")
:
create a "UnivarLebDecDistribution"
object from a "AffLinUnivarLebDecDistribution"
object
signature(from = "AbscontDistribution", to = "UnivarLebDecDistribution")
:
create a "UnivarLebDecDistribution"
object from a "AbscontDistribution"
object
signature(from = "DiscreteDistribution", to = "UnivarLebDecDistribution")
:
create a "UnivarLebDecDistribution"
object from a "DiscreteDistribution"
object
signature(x = "UnivarLebDecDistribution")
: application of a mathematical function, e.g. sin
or tan
to this discrete distribution
abs
: signature(x = "UnivarLebDecDistribution")
: exact image distribution of abs(x)
.
exp
: signature(x = "UnivarLebDecDistribution")
: exact image distribution of exp(x)
.
sign
: signature(x = "UnivarLebDecDistribution")
: exact image distribution of sign(x)
.
sign
: signature(x = "AcDcLcDistribution")
: exact image distribution of sign(x)
.
sqrt
: signature(x = "AcDcLcDistribution")
: exact image distribution of sqrt(x)
.
log
: signature(x = "UnivarLebDecDistribution")
: (with optional further argument base
, defaulting to exp(1)
) exact image distribution of log(x)
.
log10
: signature(x = "UnivarLebDecDistribution")
: exact image distribution of log10(x)
.
sqrt
: signature(x = "UnivarLebDecDistribution")
: exact
image distribution of sqrt(x)
.
sqrt
: signature(x = "AcDcLcDistribution")
: exact image distribution of sqrt(x)
.
signature(e1 = "UnivarLebDecDistribution")
: application of ‘-’ to this distribution
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
: multiplication of this distribution
by an object of class ‘numeric’
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
: division of this distribution
by an object of class ‘numeric’
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
: addition of this distribution
to an object of class ‘numeric’
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
: subtraction of an object of class ‘numeric’
from this distribution
signature(e1 = "numeric", e2 = "UnivarLebDecDistribution")
: multiplication of this distribution
by an object of class ‘numeric’
signature(e1 = "numeric", e2 = "UnivarLebDecDistribution")
: addition of this distribution
to an object of class ‘numeric’
signature(e1 = "numeric", e2 = "UnivarLebDecDistribution")
: subtraction of this distribution
from an object of class ‘numeric’
signature(e1 = "UnivarLebDecDistribution", e2 = "UnivarLebDecDistribution")
: Convolution of two Lebesgue
decomposed distributions. Result is again of class "UnivarLebDecDistribution"
, but if option
getdistrOption("withSimplify")
is TRUE
it is piped through a call to simplifyD
,
hence may also be of class AbscontDistribution
or DiscreteDistribution
.
signature(e1 = "UnivarLebDecDistribution", e2 = "UnivarLebDecDistribution")
: Convolution of two Lebesgue
decomposed distributions. The same applies as for the preceding item.
To enhance accuracy of several functionals on distributions,
mainly from package distrEx,
there is an internally used (but exported) subclass
"AffLinUnivarLebDecDistribution"
which has extra slots
a
, b
(both of class "numeric"
), and X0
(of class "UnivarLebDecDistribution"
), to capture the fact
that the object has the same distribution as a * X0 + b
. This is
the class of the return value of methods
signature(e1 = "UnivarLebDecDistribution")
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "UnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "UnivarLebDecDistribution")
signature(e1 = "numeric", e2 = "UnivarLebDecDistribution")
signature(e1 = "numeric", e2 = "UnivarLebDecDistribution")
signature(e1 = "AffLinUnivarLebDecDistribution")
signature(e1 = "AffLinUnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "AffLinUnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "AffLinUnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "AffLinUnivarLebDecDistribution", e2 = "numeric")
signature(e1 = "numeric", e2 = "AffLinUnivarLebDecDistribution")
signature(e1 = "numeric", e2 = "AffLinUnivarLebDecDistribution")
signature(e1 = "numeric", e2 = "AffLinUnivarLebDecDistribution")
There also is a class union of "AffLinAbscontDistribution"
,
"AffLinDiscreteDistribution"
, "AffLinUnivarLebDecDistribution"
and called "AffLinDistribution"
which is used for functionals.
As many operations should be valid no matter whether the operands
are of class "AbscontDistribution"
,
"DiscreteDistribution"
, or "UnivarLebDecDistribution"
,
there is a class union of these classes called "AcDcLcDistribution"
;
in particular methods for "*"
, "/"
,
"^"
(see operators-methods) and methods
Minimum
, Maximum
, Truncate
, and
Huberize
, and convpow
are defined for this
class union.
Peter Ruckdeschel [email protected]
Parameter-class
UnivarMixingDistribution-class
DiscreteDistribution-class
AbscontDistribution-class
simplifyD
flat.LCD
wg <- flat.mix(UnivarMixingDistribution(Unif(0,1),Unif(4,5), withSimplify=FALSE)) myLC <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart = wg, discreteWeight=.2) myLC p(myLC)(0.3) r(myLC)(30) q(myLC)(0.9) ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) acPart(myLC) plot(myLC) d.discrete(myLC)(2) p.ac(myLC)(0) acWeight(myLC) plot(acPart(myLC)) plot(discretePart(myLC)) gaps(myLC) support(myLC) plot(as(Norm(),"UnivarLebDecDistribution"))
wg <- flat.mix(UnivarMixingDistribution(Unif(0,1),Unif(4,5), withSimplify=FALSE)) myLC <- UnivarLebDecDistribution(discretePart=Binom(3,.3), acPart = wg, discreteWeight=.2) myLC p(myLC)(0.3) r(myLC)(30) q(myLC)(0.9) ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) acPart(myLC) plot(myLC) d.discrete(myLC)(2) p.ac(myLC)(0) acWeight(myLC) plot(acPart(myLC)) plot(discretePart(myLC)) gaps(myLC) support(myLC) plot(as(Norm(),"UnivarLebDecDistribution"))
Generates an object of class "UnivarMixingDistribution"
.
UnivarMixingDistribution(..., Dlist, mixCoeff, withSimplify = getdistrOption("simplifyD"))
UnivarMixingDistribution(..., Dlist, mixCoeff, withSimplify = getdistrOption("simplifyD"))
... |
Objects of class |
Dlist |
an optional list or object of class |
mixCoeff |
Objects of class |
withSimplify |
|
If mixCoeff
is missing, all elements in ...
are equally weighted.
Object of class "UnivarMixingDistribution"
, or if
argument withSimplify
is TRUE
and the resulting
object would have one mixing component with probability (almost) 1,
UnivarMixingDistribution
will return this component.
Peter Ruckdeschel [email protected]
UnivarMixingDistribution-class
,
simplifyD
mylist <- UnivarMixingDistribution(Binom(3,.3), Dirac(2), Norm(), mixCoeff=c(1/4,1/5,11/20))
mylist <- UnivarMixingDistribution(Binom(3,.3), Dirac(2), Norm(), mixCoeff=c(1/4,1/5,11/20))
UnivarMixingDistribution
-class is a class to formalize
univariate mixing distributions; it is a subclass to
class UnivariateDistribution
.
Objects can be created by calls of the form
new("UnivarMixingDistribution", ...)
.
More frequently they are created via the generating function
UnivarMixingDistribution
.
mixCoeff
Object of class "numeric"
: a vector of
probabilities for the mixing components.
mixDistr
Object of class "UnivarDistrList"
: a list of
univariate distributions containing the mixing components; must be of same
length as mixCoeff
.
img
Object of class "Reals"
: the space of the image of this distribution which has dimension 1
and the name "Real Space"
param
Object of class "Parameter"
: the parameter of this distribution, having only the
slot name "Parameter of a discrete distribution"
r
Object of class "function"
: generates random numbers
d
fixed to NULL
p
Object of class "function"
: cumulative distribution function
q
Object of class "function"
: quantile function
support
numeric vector — the union of all support slots of components, if existing
gaps
(numeric) matrix or NULL
; the merged gaps
slots of all components,
if existing (else NULL)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "UnivariateDistribution"
class "Distribution"
by class "UnivariateDistribution"
.
signature(object = "UnivarMixingDistribution")
prints the object
signature(object = "UnivarMixingDistribution")
replaces the corresponding slot
signature(object = "UnivarMixingDistribution")
returns the corresponding slot
signature(object = "UnivarMixingDistribution")
replaces the corresponding slot
signature(object = "UnivarMixingDistribution")
returns the corresponding slot
signature(object = "UnivarMixingDistribution")
returns the corresponding slot
signature(object = "UnivarMixingDistribution")
returns the corresponding slot
signature(object = "Distribution")
: returns slot
.logExact
if existing; else tries to convert the object to a newer
version of its class by conv2NewVersion
and
returns the corresponding slot of the converted object.
signature(object = "Distribution")
: returns slot
.lowerExact
if existing; else tries to convert the object to a
newer version of its class by conv2NewVersion
and
returns the corresponding slot of the converted object.
returns slot Symmetry
if existing; else
tries to convert the object to a
newer version of its class by conv2NewVersion
and
returns the corresponding slot of the converted object.
Peter Ruckdeschel [email protected]
Parameter-class
,
UnivariateDistribution-class
,
LatticeDistribution-class
,
AbscontDistribution-class
,
simplifyD
,
flat.mix
mylist <- UnivarMixingDistribution(Binom(3,.3), Dirac(2), Norm(), mixCoeff=c(1/4,1/5,11/20)) mylist2 <- UnivarMixingDistribution(Binom(3,.3), mylist, mixCoeff=c(.3,.7)) mylist2 p(mylist)(0.3) mixDistr(mylist2)
mylist <- UnivarMixingDistribution(Binom(3,.3), Dirac(2), Norm(), mixCoeff=c(1/4,1/5,11/20)) mylist2 <- UnivarMixingDistribution(Binom(3,.3), mylist, mixCoeff=c(.3,.7)) mylist2 p(mylist)(0.3) mixDistr(mylist2)
Version-Management-methods
isOldVersion(object) conv2NewVersion(object) ## S4 method for signature 'ANY' isOldVersion(object) ## S4 method for signature 'ANY' conv2NewVersion(object) ## S4 method for signature 'LatticeDistribution' conv2NewVersion(object)
isOldVersion(object) conv2NewVersion(object) ## S4 method for signature 'ANY' isOldVersion(object) ## S4 method for signature 'ANY' conv2NewVersion(object) ## S4 method for signature 'LatticeDistribution' conv2NewVersion(object)
object |
object of class |
From version 1.9 of this package on, class "AbscontDistribution"
has an extra slot
gaps
. As the addition of new slots will probably happen again in the future development
of our packages, we provide the following two help functions
isOldVersion
and conv2NewVersion
to check whether the object was generated by an
older version of this package and to convert such an object to the new format, respectively.
Also, the intermediate class "LatticeDistribution"
is introduced at version 1.9
so that all subclasses of "DiscreteDistribution"
like "Binom"
, "Nbinom"
etc,
now have an extra slot lattice
. conv2NewVersion
takes this up and provides
a particular method for signature "LatticeDistribution"
which fills slot
lattice
accordingly.
signature(object = "ANY")
:
throws an error if isClass(class(object))
is FALSE
, i.e.; if
the class of object
is no formal (S4) class. Else it checks whether
all slots of the actual class definition may be accessed and if so
returns FALSE
and else TRUE
and issues a warning.
signature(object = "ANY")
:
Generates a valid copy of object
(according to the actual class definition),
using the slots of object
where possible and for the slots which are not yet
present in object
(because it was generated by an older version of
the class definition), it generates a prototype object of the class
of object
with new(class(object))
and uses
the slot values of this prototype to fill the missing slots.
signature(object = "LatticeDistribution")
:
Generates a valid copy of object
(according to the actual class definition,
i.e.; with a corresponding lattice
-slot), by generating a new instance of
this object by new(class(object), <list-of-parameters>
.
The Weibull distribution with shape
parameter , by default
, and
scale
parameter has density given by, by default
,
for .
C.f. rweibull
Objects can be created by calls of the form Weibull(shape, scale)
.
This object is a Weibull distribution.
img
Object of class "Reals"
: The space of the image of this distribution has got dimension 1
and the name "Real Space".
param
Object of class "WeibullParameter"
: the parameter of this distribution (shape and scale),
declared at its instantiation
r
Object of class "function"
: generates random numbers (calls function rweibull
)
d
Object of class "function"
: density function (calls function dweibull
)
p
Object of class "function"
: cumulative function (calls function pweibull
)
q
Object of class "function"
: inverse of the cumulative function (calls function qweibull
)
.withArith
logical: used internally to issue warnings as to interpretation of arithmetics
.withSim
logical: used internally to issue warnings as to accuracy
.logExact
logical: used internally to flag the case where there are explicit formulae for the log version of density, cdf, and quantile function
.lowerExact
logical: used internally to flag the case where there are explicit formulae for the lower tail version of cdf and quantile function
Symmetry
object of class "DistributionSymmetry"
;
used internally to avoid unnecessary calculations.
Class "AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.
signature(.Object = "Weibull")
: initialize method
signature(object = "Weibull")
: returns the slot scale
of the parameter of the distribution
signature(object = "Weibull")
: modifies the slot scale
of the parameter of the distribution
signature(object = "Weibull")
: returns the slot shape
of the parameter of the distribution
signature(object = "Weibull")
: modifies the slot shape
of the parameter of the distribution
signature(e1 = "Weibull", e2 = "numeric")
:
For the Weibull distribution we use its closedness under positive scaling transformations.
The density is for
.
The cumulative is
,
the mean is ,
and the .
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
WeibullParameter-class
AbscontDistribution-class
Reals-class
rweibull
W <- Weibull(shape=1,scale=1) # W is a Weibull distribution with shape=1 and scale=1. r(W)(1) # one random number generated from this distribution, e.g. 0.5204105 d(W)(1) # Density of this distribution is 0.3678794 for x=1. p(W)(1) # Probability that x<1 is 0.6321206. q(W)(.1) # Probability that x<0.1053605 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) shape(W) # shape of this distribution is 1. shape(W) <- 2 # shape of this distribution is now 2.
W <- Weibull(shape=1,scale=1) # W is a Weibull distribution with shape=1 and scale=1. r(W)(1) # one random number generated from this distribution, e.g. 0.5204105 d(W)(1) # Density of this distribution is 0.3678794 for x=1. p(W)(1) # Probability that x<1 is 0.6321206. q(W)(.1) # Probability that x<0.1053605 is 0.1. ## in RStudio or Jupyter IRKernel, use q.l(.)(.) instead of q(.)(.) shape(W) # shape of this distribution is 1. shape(W) <- 2 # shape of this distribution is now 2.
The parameter of a Weibull distribution, used by Weibull
-class
Objects can be created by calls of the form new("WeibullParameter", shape, scale)
.
Usually an object of this class is not needed on its own, it is generated automatically when an object of the class Weibull
is instantiated.
shape
Object of class "numeric"
: the shape of a Weibull distribution
scale
Object of class "numeric"
: the scale of a Weibull distribution
name
Object of class "character"
: a name / comment for the parameters
Class "Parameter"
, directly.
signature(.Object = "WeibullParameter")
: initialize method
signature(object = "WeibullParameter")
: returns the slot scale
of a parameter of a Weibull
distribution
signature(object = "WeibullParameter")
: modifies the slot scale
of a parameter of a Weibull
distribution
signature(object = "WeibullParameter")
: returns the slot shape
of a parameter of a Weibull
distribution
signature(object = "WeibullParameter")
: modifies the slot shape
of a parameter of a Weibull
distribution
Thomas Stabla [email protected],
Florian Camphausen [email protected],
Peter Ruckdeschel [email protected],
Matthias Kohl [email protected]
W <- new("WeibullParameter",shape=1,scale=1) shape(W) # shape of this distribution is 1. shape(W) <- 2 # shape of this distribution is now 2.
W <- new("WeibullParameter",shape=1,scale=1) shape(W) # shape of this distribution is 1. shape(W) <- 2 # shape of this distribution is now 2.
width-methods
signature(object = "Lattice")
: returns the slot width of the lattice
signature(object = "Lattice")
: modifies the slot width of the lattice
signature(object = "LatticeDistribution")
: returns the slot width of the lattice slot of the distribution
signature(object = "LatticeDistribution")
: modifies the slot width of the lattice slot of the distribution