Class and methods for left-, right-, and interval-truncated logistic distributions using the workflow from the distributions3 package.
Usage
TruncatedLogistic(location = 0, scale = 1, left = -Inf, right = Inf)
Arguments
location
numeric. The location parameter of the underlying untruncated logistic distribution, typically written \(\mu\) in textbooks. Can be any real number, defaults to 0.
scale
numeric. The scale parameter (standard deviation) of the underlying untruncated logistic distribution, typically written \(\sigma\) in textbooks. Can be any positive number, defaults to 1.
left
numeric. The left truncation point. Can be any real number, defaults to -Inf (untruncated). If set to a finite value, the distribution has a point mass at left whose probability corresponds to the cumulative probability function of the untruncated logistic distribution at this point.
right
numeric. The right truncation point. Can be any real number, defaults to Inf (untruncated). If set to a finite value, the distribution has a point mass at right whose probability corresponds to 1 minus the cumulative probability function of the untruncated logistic distribution at this point.
Details
The constructor function TruncatedLogistic sets up a distribution object, representing the truncated logistic probability distribution by the corresponding parameters: the latent mean location = \(\mu\) and latent standard deviation scale = \(\sigma\) (i.e., the parameters of the underlying untruncated logistic variable), the left truncation point (with -Inf corresponding to untruncated), and the right truncation point (with Inf corresponding to untruncated).
The truncated logistic distribution has probability density function (PDF):
for \(left \le x \le right\), and 0 otherwise, where \(\Lambda\) and \(\lambda\) are the cumulative distribution function and probability density function of the standard logistic distribution, respectively.
All parameters can also be vectors, so that it is possible to define a vector of truncated logistic distributions with potentially different parameters. All parameters need to have the same length or must be scalars (i.e., of length 1) which are then recycled to the length of the other parameters.
For the TruncatedLogistic distribution objects there is a wide range of standard methods available to the generics provided in the distributions3 package: pdf and log_pdf for the (log-)density (PDF), cdf for the probability from the cumulative distribution function (CDF), quantile for quantiles, random for simulating random variables, crps for the continuous ranked probability score (CRPS), and support for the support interval (minimum and maximum). Internally, these methods rely on the usual d/p/q/r functions provided for the truncated logistic distributions in the crch package, see dtlogis, and the crps_tlogis function from the scoringRules package. The methods is_discrete and is_continuous can be used to query whether the distributions are discrete on the entire support (always FALSE) or continuous on the entire support (always TRUE).
See the examples below for an illustration of the workflow for the class and methods.
library("crch")## package and random seedlibrary("distributions3")set.seed(6020)## three truncated logistic distributions:## - untruncated standard logistic## - left-truncated at zero with latent location = 1 and scale = 1## - interval-truncated in [0, 5] with latent location = 2 and scale = 1X<-TruncatedLogistic( location =c(0, 1, 2), scale =c(1, 1, 1), left =c(-Inf, 0, 0), right =c(Inf, Inf, 5))X
[1] "TruncatedLogistic distribution (location = 0, scale = 1, left = -Inf, right = Inf)"
[2] "TruncatedLogistic distribution (location = 1, scale = 1, left = 0, right = Inf)"
[3] "TruncatedLogistic distribution (location = 2, scale = 1, left = 0, right = 5)"
## compute mean of the truncated distributionmean(X)
[1] 0.000000 1.796384 2.209353
## higher moments (variance, skewness, kurtosis) are not implemented yet## support interval (minimum and maximum)support(X)
## all methods above can either be applied elementwise or for## all combinations of X and x, if length(X) = length(x),## also the result can be assured to be a matrix via drop = FALSEp<-c(0.05, 0.5, 0.95)quantile(X, p, elementwise =FALSE)