The convdistr
package provide tools to define
distribution objects and make mathematical operations with them. It keep
track of the results as if they where scalar numbers but maintaining the
ability to obtain randoms samples of the convoluted distributions.
To install this package from github
devtools::install_github("johnaponte/convdistr", build_manual = T, build_vignettes = T)
What would be the resulting distribution of \(a+b*c\) if \(a\) is a normal distribution with mean 1 and standard deviation 0.5, \(b\) is a poisson distribution with lambda 5 and \(c\) is a beta distribution with shape parameters 10 and 20?
library(convdistr)
library(ggplot2)
a <- new_NORMAL(1,0.5)
b <- new_POISSON(5)
c <- new_BETA(10,20)
res <- a + b * c
metadata(res)
#> distribution rvar
#> 1 CONVOLUTION 2.666667
summary(res)
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
CONVOLUTION | rvar | 2.67 | 10000 | 2.65 | 1.01 | 0.95 | 2.56 | 4.88 |
The result is a distribution with expected value 2.67. A sample from 10000 drawns of the distribution shows a mean value of 2.65, a median of 2.56 and 95% quantiles of 0.95, 4.88
The following sections describe the DISTRIBUTION object, how to create new DISTRIBUTION objects and how to make operations and mixtures with them.
Please note that when convoluting distributions, this package assumes the distributions are independent between them, i.e. their correlation is 0. If not, you need to implement specific distributions to handle the correlation, like the MULTIVARIATE object.
DISTRIBUTION
objectThe DISTRIBUTION
is kind of abstract class (or
interface) that specific constructors should implement.
It contains 4 fields:
distribution : A character with the name of the distribution implemented
seed : A numerical seed that is use to get a
repeatable sample in the summary
function
oval : The observed value. It is the value expected. It is used as a number for the mathematical operations of the distributions as if they were a simple scalar
rfunc(n) : A function that generate random numbers
from the distribution. Its only parameter n
is the number
of drawns of the distribution. It returns a matrix with as many rows as
n
, and as many columns as the dimensions of the
distributions
The DISTRIBUTION object can support multidimensional distributions
for example a dirichlet distribution. The names of the dimensions should
coincides with the names of the oval
vector. If it has only
one dimension, the default name is rvar
.
It is expected that the rfunc
could be included in the
creation of new distributions by convolution or mixture, so the
environment should be carefully controlled to avoid reference leaking
that is possible within the R language. For that reason, the
rfunc
should be created within a
restrict_environment
function that controls that only the
variables that are required within the function
are saved
in the environment of the function.
Once the new objects are instanced, the fields are immutable and should not be changed.
DISTRIBUTION
objectsThe following functions create new objects of class
DISTRIBUTION
Distribution | factory | parameters | function |
---|---|---|---|
uniform | new_UNIFORM | p_min, p_max | runif |
normal | new_NORMAL | p_mean, p_sd | rnorm |
beta | new_BETA | p_shape1, p_shape2 | rbeta |
beta | new_BETA_lci | p_mean, p_lci, p_uci | rbeta |
triangular | new_TRIANGULAR | p_min, p_max, p_mode | rtriangular |
poisson | new_POISSON | p_lambda | rpoisson |
exponential | new_EXPONENTIAL | p_rate | rexp |
discrete | new_DISCRETE | p_supp, p_prob | sample |
dirichlet | new_DIRICHLET | p_alpha, p_dimnames | rdirichlet |
truncated | new_TRUNCATED | p_distribution, p_min, p_max | |
dirac | new_DIRAC | p_value | |
NA | new_NA | p_dimnames |
The following are methods for all objects of class
DISTRIBUTION
metadata(x)
Print the metadata for the
distributionsummary(object, n=10000)
Produce a summary of the
distributionrfunc(x, n)
Generate n
random drawns of
the distributionplot(x, n= 10000)
Produce a density plot of the
distributionggDISTRIBUTION(x, n= 10000)
produce a density plot of
the distribution using ggplot2myDistr <- new_NORMAL(0,1)
metadata(myDistr)
#> distribution rvar
#> 1 NORMAL 0
rfunc(myDistr, 10)
#> rvar
#> 1 -2.0754143
#> 2 -0.4535736
#> 3 0.7242115
#> 4 0.6576878
#> 5 0.9183287
#> 6 1.1873894
#> 7 1.4417875
#> 8 -1.7086042
#> 9 0.2454097
#> 10 -0.3012027
summary(myDistr)
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
NORMAL | rvar | 0 | 10000 | 0 | 1.01 | -1.99 | 0 | 1.98 |
Mathematical operations like +
, -
,
*
, /
between DISTRIBUTION
with
the same dimensions can be perform with the
new_CONVOLUTION(listdistr, op, omit_NA = FALSE)
function.
The listdistr
parameter is a list of
DISTRIBUTION
objects on which the operation is made. A
shorter version exists for each one of the operations as follow
new_SUM(listdistr, omit_NA = FALSE)
new_SUBTRACTION(listdistr, omit_NA = FALSE)
new_MULTIPLICATION(listdistr, omit_NA = FALSE)
new_DIVISION(listdistr, omit_NA = FALSE)
but Mathematical operator can also be used.
d1 <- new_NORMAL(1,1)
d2 <- new_UNIFORM(2,8)
d3 <- new_POISSON(5)
dsum <- new_SUM(list(d1,d2,d3))
dsum
#> distribution rvar
#> 1 CONVOLUTION 11
d1 + d2 + d3
#> distribution rvar
#> 1 CONVOLUTION 11
summary(dsum)
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
CONVOLUTION | rvar | 11 | 10000 | 11.06 | 3.03 | 5.48 | 10.98 | 17.11 |
A DISTRIBUTION
, consisting on the mixture of several
distribution can be obtained with the
new_MIXTURE(listdistr, mixture)
function where
listdistr
is a list of DISTRIBUTION
objects
and mixture
the vector of probabilities for each
distribution. If missing the mixture, the probability will be the same
for each distribution.
d1 <- new_NORMAL(1,0.5)
d2 <- new_NORMAL(5,0.5)
d3 <- new_NORMAL(10,0.5)
dmix <- new_MIXTURE(list(d1,d2,d3))
summary(dmix)
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
MIXTURE | rvar | 5.33 | 10000 | 5.33 | 3.69 | 0.27 | 5.01 | 10.7 |
When convoluting distribution with different dimensions, there are
two possibilities. The new_CONVOLUTION_assoc
family of
functions perform the operation only on the common dimensions and left
the others dimensions as they are, or the
new_CONVOLUTION_comb
family of functions which perform the
operation in the combination of all dimensions.
d1 <- new_MULTINORMAL(c(0,1), matrix(c(1,0.3,0.3,1), ncol = 2), p_dimnames = c("A","B"))
d2 <- new_MULTINORMAL(c(3,4), matrix(c(1,0.3,0.3,1), ncol = 2), p_dimnames = c("B","C"))
summary(d1)
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
MULTINORMAL | A | 0 | 10000 | -0.01 | 1.01 | -1.99 | -0.02 | 1.97 |
MULTINORMAL | B | 1 | 10000 | 1.01 | 1.00 | -0.96 | 1.02 | 2.93 |
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
MULTINORMAL | B | 3 | 10000 | 2.98 | 1.01 | 1.02 | 2.97 | 4.99 |
MULTINORMAL | C | 4 | 10000 | 4.00 | 1.00 | 2.07 | 4.01 | 5.96 |
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
CONVOLUTION | A | 0 | 10000 | 0.00 | 0.99 | -1.91 | -0.01 | 1.96 |
CONVOLUTION | C | 4 | 10000 | 4.00 | 1.00 | 2.07 | 4.00 | 5.98 |
CONVOLUTION | B | 4 | 10000 | 3.97 | 1.41 | 1.18 | 3.98 | 6.75 |
distribution | varname | oval | nsample | mean_ | sd_ | lci_ | median_ | uci_ |
---|---|---|---|---|---|---|---|---|
CONVOLUTION | A_B | 3 | 10000 | 3.01 | 1.39 | 0.28 | 3.01 | 5.69 |
CONVOLUTION | B_B | 4 | 10000 | 3.99 | 1.40 | 1.25 | 3.98 | 6.72 |
CONVOLUTION | A_C | 4 | 10000 | 4.01 | 1.40 | 1.26 | 4.03 | 6.71 |
CONVOLUTION | B_C | 5 | 10000 | 4.99 | 1.39 | 2.23 | 4.98 | 7.73 |