# The Box-Cox slash distribution -------------------------------------------------------------------
#' @name bcsl
#'
#' @title The Box-Cox Slash Distribution
#'
#' @description Density, distribution function, quantile function, and random
#' generation for the Box-Cox slash distribution with parameters \code{mu},
#' \code{sigma}, \code{lambda}, and \code{nu}.
#'
#' @param x,q vector of positive quantiles.
#' @param p vector of probabilities.
#' @param n number of random values to return.
#' @param mu vector of strictly positive scale parameters.
#' @param sigma vector of strictly positive relative dispersion parameters.
#' @param lambda vector of real-valued skewness parameters. If \code{lambda = 0}, the Box-Cox
#' slash distribution reduces to the log-slash distribution with parameters
#' \code{mu}, \code{sigma}, and \code{nu} (see \code{\link{lsl}}).
#' @param nu strictly positive heavy-tailness parameter.
#' @param lower.tail logical; if \code{TRUE} (default), probabilities are
#' \code{P[X <= x]}, otherwise, \code{P[X > x]}.
#' @param log logical; if \code{TRUE}, probabilities \code{p} are given as \code{log(p)}.
#'
#' @return \code{dbcsl} returns the density, \code{pbcsl} gives the distribution function,
#' \code{qbcsl} gives the quantile function, and \code{rbcsl} generates random observations.
#'
#' Invalid arguments will result in return value \code{NaN}, with an warning.
#'
#' The length of the result is determined by \code{n} for \code{rbcsl}, and is the
#' maximum of the lengths of the numerical arguments for the other functions.
#'
#' @references Vanegas, L. H., and Paula, G. A. (2016). Log-symmetric distributions: statistical
#' properties and parameter estimation. \emph{Brazilian Journal of Probability and Statistics}, 30, 196-220.
#'
#' @references Ferrari, S. L. P., and Fumes, G. (2017). Box-Cox symmetric distributions and
#' applications to nutritional data. \emph{AStA Advances in Statistical Analysis}, 101, 321-344.
#'
#' @author Rodrigo M. R. de Medeiros <\email{rodrigo.matheus@live.com}>
#'
#' @examples
#' mu <- 8
#' sigma <- 1
#' lambda <- 2
#' nu <- 4
#'
#' # Sample generation
#' x <- rbcsl(10000, mu, sigma, lambda, nu)
#'
#' # Density
#' hist(x, prob = TRUE, main = "The Box-Cox Slash Distribution", col = "white")
#' curve(dbcsl(x, mu, sigma, lambda, nu), add = TRUE, col = 2, lwd = 2)
#' legend("topleft", "Probability density function", col = 2, lwd = 2, lty = 1)
#'
#' # Distribution function
#' plot(ecdf(x), main = "The Box-Cox Slash Distribution", ylab = "Distribution function")
#' curve(pbcsl(x, mu, sigma, lambda, nu), add = TRUE, col = 2, lwd = 2)
#' legend("bottomright", c("Emp. distribution function", "Theo. distribution function"),
#' col = c(1, 2), lwd = 2, lty = c(1, 1)
#' )
#'
#' # Quantile function
#' plot(seq(0.01, 0.99, 0.001), quantile(x, seq(0.01, 0.99, 0.001)),
#' type = "l",
#' xlab = "p", ylab = "Quantile function", main = "The Box-Cox Slash Distribution"
#' )
#' curve(qbcsl(x, mu, sigma, lambda, nu), add = TRUE, col = 2, lwd = 2, from = 0, to = 1)
#' legend("topleft", c("Emp. quantile function", "Theo. quantile function"),
#' col = c(1, 2), lwd = 2, lty = c(1, 1)
#' )
NULL
# Density
#' @rdname bcsl
#' @export
dbcsl <- function(x, mu, sigma, lambda, nu, log = FALSE){
if(is.matrix(x)) d <- ncol(x) else d <- 1L
maxl <- max(c(length(x), length(mu), length(sigma), length(lambda), length(nu)))
x <- rep(x, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
lambda <- rep(lambda, length.out = maxl)
#nu <- rep(nu, length.out = maxl)
pmf <- rep(-Inf, maxl)
# NaN index
pmf[which(mu <= 0 | sigma <= 0 | nu <= 0)] <- NaN
# Positive density index
id1 <- which(x > 0 & lambda != 0 & !is.nan(pmf))
id2 <- which(x > 0 & lambda == 0 & !is.nan(pmf))
# Extended Box-Cox transformation
z <- vector()
z[id1] <- ((x[id1] / mu[id1])^lambda[id1] - 1) / (sigma[id1] * lambda[id1])
z[id2] <- log(x[id2] / mu[id2]) / sigma[id2]
# pmf[id1] <- (lambda[id1] - 1) * log(x[id1]) + dslash(z[id1], nu = nu, log = TRUE) -
# pslash(1/(sigma[id1] * abs(lambda[id1])), nu = nu, log.p = TRUE) -
# lambda[id1] * log(mu[id1]) - log(sigma[id1])
# Generating distribution
log_r <- function(u){
if (is.vector(u))
u <- matrix(u, nrow = length(u))
n <- dim(u)[1]
d <- dim(u)[2]
pmf <- matrix(0, n, d)
# NaN index
NaNid <- which(nu <= 0, arr.ind = TRUE)
pmf[NaNid] <- NaN
# Positive density index
id1 <- which(u > 0 & !is.nan(pmf), arr.ind = TRUE)
id2 <- which(u == 0 & !is.nan(pmf), arr.ind = TRUE)
pmf[id1] <- log(ig(nu + 0.5, u[id1]/2)) + log(nu) + (nu - 1) * log(2) -
0.5 * log(pi) - (nu + 0.5) * log(u[id1])
pmf[id2] <- log(2 * nu) - log(2 * nu + 1) - 0.5 * log(2 * pi)
if(d == 1L) as.numeric(pmf) else pmf
}
W <- distr::AbscontDistribution(d = function(x) exp(log_r(x^2)))
pmf[id1] <- (lambda[id1] - 1) * log(x[id1]) + dslash(z[id1], nu = nu, log = TRUE) -
log(distr::p(W)(1 / (sigma[id1] * abs(lambda[id1])))) -
lambda[id1] * log(mu[id1]) - log(sigma[id1])
pmf[id2] <- dslash(z[id2], nu = nu, log = TRUE) - log(sigma[id2] * x[id2])
if(!log) pmf <- exp(pmf)
if(d > 1L) matrix(pmf, ncol = d) else pmf
}
## Distribution function
#' @rdname bcsl
#' @export
pbcsl <- function(q, mu, sigma, lambda, nu, lower.tail = TRUE){
if(is.matrix(q)) d <- ncol(q) else d <- 1L
maxl <- max(c(length(q), length(mu), length(sigma), length(lambda), length(nu)))
q <- rep(q, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
lambda <- rep(lambda, length.out = maxl)
#nu <- rep(nu, length.out = maxl)
# Extended Box-Cox transformation
z <- rep(NaN, length.out = maxl)
id1 <- which(q > 0 & mu > 0 & sigma > 0 & lambda != 0 & nu > 0)
id2 <- which(q > 0 & mu > 0 & sigma > 0 & lambda == 0 & nu > 0)
z[id1] <- ((q[id1] / mu[id1])^lambda[id1] - 1) / (sigma[id1] * lambda[id1])
z[id2] <- log(q[id2] / mu[id2]) / sigma[id2]
id1 <- which(q > 0 & mu > 0 & sigma > 0 & lambda <= 0 & nu > 0)
id2 <- which(q > 0 & mu > 0 & sigma > 0 & lambda > 0 & nu > 0)
cdf <- rep(NaN, length.out = maxl)
# cdf[id1] <- pslash(z[id1], nu = nu[id1]) / pslash(1 / (sigma[id1] * abs(lambda[id1])), nu = nu[id1])
# cdf[id2] <- (pslash(z[id2], nu = nu[id2]) - pslash(- 1 / (sigma[id2] * lambda[id2]), nu = nu[id2])) /
# pslash(1 / (sigma[id2] * lambda[id2]), nu = nu[id2])
# Generating distribution
log_r <- function(u){
if (is.vector(u))
u <- matrix(u, nrow = length(u))
n <- dim(u)[1]
d <- dim(u)[2]
pmf <- matrix(0, n, d)
# NaN index
NaNid <- which(nu <= 0, arr.ind = TRUE)
pmf[NaNid] <- NaN
# Positive density index
id1 <- which(u > 0 & !is.nan(pmf), arr.ind = TRUE)
id2 <- which(u == 0 & !is.nan(pmf), arr.ind = TRUE)
pmf[id1] <- log(ig(nu + 0.5, u[id1]/2)) + log(nu) + (nu - 1) * log(2) -
0.5 * log(pi) - (nu + 0.5) * log(u[id1])
pmf[id2] <- log(2 * nu) - log(2 * nu + 1) - 0.5 * log(2 * pi)
if(d == 1L) as.numeric(pmf) else pmf
}
W <- distr::AbscontDistribution(d = function(x) exp(log_r(x^2)))
cdf[id1] <- distr::p(W)(z[id1]) / distr::p(W)(1 / (sigma[id1] * abs(lambda[id1])))
cdf[id2] <- (distr::p(W)(z[id2]) - distr::p(W)(- 1 / (sigma[id2] * lambda[id2]))) /
distr::p(W)(1 / (sigma[id2] * lambda[id2]))
cdf[which(q <= 0 & mu > 0 & sigma > 0 & nu > 0)] <- 0
if (!lower.tail) cdf <- 1 - cdf
if(d > 1L) matrix(cdf, ncol = d) else cdf
}
## Quantile function
#' @rdname bcsl
#' @export
qbcsl <- function(p, mu, sigma, lambda, nu, lower.tail = TRUE){
if(is.matrix(p)) d <- ncol(p) else d <- 1L
maxl <- max(c(length(p), length(mu), length(sigma), length(lambda), length(nu)))
p <- rep(p, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
lambda <- rep(lambda, length.out = maxl)
#nu <- rep(nu, length.out = maxl)
if (!lower.tail) p <- 1 - p
qtf <- zp <- rep(NaN, length.out = maxl)
# z_p
id1 <- which(p > 0 & p < 1 & mu > 0 & sigma > 0 & lambda <= 0 & nu > 0)
id2 <- which(p > 0 & p < 1 & mu > 0 & sigma > 0 & lambda > 0 & nu > 0)
# Generating distribution
log_r <- function(u){
if (is.vector(u))
u <- matrix(u, nrow = length(u))
n <- dim(u)[1]
d <- dim(u)[2]
pmf <- matrix(0, n, d)
# NaN index
NaNid <- which(nu <= 0, arr.ind = TRUE)
pmf[NaNid] <- NaN
# Positive density index
id1 <- which(u > 0 & !is.nan(pmf), arr.ind = TRUE)
id2 <- which(u == 0 & !is.nan(pmf), arr.ind = TRUE)
pmf[id1] <- log(ig(nu + 0.5, u[id1]/2)) + log(nu) + (nu - 1) * log(2) -
0.5 * log(pi) - (nu + 0.5) * log(u[id1])
pmf[id2] <- log(2 * nu) - log(2 * nu + 1) - 0.5 * log(2 * pi)
if(d == 1L) as.numeric(pmf) else pmf
}
W <- distr::AbscontDistribution(d = function(x) exp(log_r(x^2)))
zp[id1] <- distr::q(W)(p[id1] * distr::p(W)(1 / (sigma[id1] * abs(lambda[id1]))))
zp[id2] <- distr::q(W)(1 - (1 - p[id2]) * distr::p(W)(1 / (sigma[id2] * abs(lambda[id2]))))
# Quantile function
id1 <- which(p > 0 & p < 1 & mu > 0 & sigma > 0 & lambda != 0 & nu > 0)
id2 <- which(p > 0 & p < 1 & mu > 0 & sigma > 0 & lambda == 0 & nu > 0)
id3 <- which(p == 0 & mu > 0 & sigma > 0 & nu > 0)
id4 <- which(p == 1 & mu > 0 & sigma > 0 & nu > 0)
qtf[id1] <- exp(log(mu[id1]) + (1 / lambda[id1]) * log1p(sigma[id1] * lambda[id1] * zp[id1]))
qtf[id2] <- exp(log(mu[id2]) + sigma[id2] * zp[id2])
qtf[id3] <- 0
qtf[id4] <- Inf
if(d > 1L) matrix(qtf, ncol = d) else qtf
}
# Random generation
#' @rdname bcsl
#' @export
rbcsl <- function(n, mu, sigma, lambda, nu){
u <- stats::runif(n)
qbcsl(u, mu, sigma, lambda, nu)
}
# BCS class
bcsl <- function(x) {
out <- list()
# Abbreviation
out$abb <- "bcsl"
# Name
out$name <- "Box-Cox Slash"
# Number of parameters
out$npar <- 4
# Extra parameter
out$extrap <- TRUE
# Initial values -------------------------------------------------------------
out$start <- function(x) {
n <- length(x)
gamlss_fit <- suppressWarnings(try(gamlss::gamlss(x ~ 1, family = gamlss.dist::BCT(mu.link = "log"), trace = FALSE), silent = TRUE))
if (unique(grepl("Error", gamlss_fit))) {
convergence <- FALSE
} else {
convergence <- gamlss_fit$converged
}
if (convergence) {
c(exp(stats::coef(gamlss_fit, "mu")), exp(stats::coef(gamlss_fit, "sigma")),
stats::coef(gamlss_fit, "nu"), min(exp(stats::coef(gamlss_fit, "tau")), 20))
} else {
CV <- 0.75 * (stats::quantile(x, 0.75) - stats::quantile(x, 0.25)) / stats::median(x)
mu0 <- stats::median(x)
sigma0 <- asinh(CV / 1.5) * stats::qlogis(0.75)
z <- log(x / mu0) / sigma0
grid <- seq(1, 20, 1)
upsilon <- function(nu){
cdf <- sort(stats::dt(z, nu))
temp <- stats::qqnorm(stats::qnorm(cdf), plot.it = FALSE)
mean(abs(sort(temp$x) - sort(temp$y)))
}
out <- apply(matrix(grid), 1, upsilon)
nu0 <- grid[which.min(out)]
c(mu0, sigma0, 0L, nu0)
}
}
structure(out, class = "bcs")
}
# The Log-slash distribution -------------------------------------------------------------------
#' @name lsl
#'
#' @title The Log-Slash Distribution
#'
#' @description Density, distribution function, quantile function, and random
#' generation for the log-slash distribution with parameters \code{mu},
#' \code{sigma}, and \code{nu}.
#'
#' @param x,q vector of positive quantiles.
#' @param p vector of probabilities.
#' @param n number of random values to return.
#' @param mu vector of strictly positive scale parameters.
#' @param sigma vector of strictly positive relative dispersion parameters.
#' @param nu strictly positive heavy-tailedness parameter.
#' @param lower.tail logical; if \code{TRUE} (default), probabilities are
#' \code{P[X <= x]}, otherwise, \code{P[X > x]}.
#' @param log logical; if \code{TRUE}, probabilities \code{p} are given as \code{log(p)}.
#' @param ... further arguments.
#'
#' @details A random variable X has a log-slash distribution with parameter \code{mu} and
#' \code{sigma} if log(X) follows a slash distribution with location parameter \code{log(mu)}
#' and dispersion parameter \code{sigma}. It can be showed that \code{mu} is the median of X.
#'
#' @return \code{dlsl} returns the density, \code{plsl} gives the distribution
#' function, \code{qlsl} gives the quantile function, and \code{rlsl}
#' generates random observations.
#'
#' Invalid arguments will result in return value \code{NaN}.
#'
#' The length of the result is determined by \code{n} for \code{rlsl}, and is the
#' maximum of the lengths of the numerical arguments for the other functions.
#'
#' @references Vanegas, L. H., and Paula, G. A. (2016). Log-symmetric distributions: statistical
#' properties and parameter estimation. \emph{Brazilian Journal of Probability and Statistics}, 30, 196-220.
#'
#' @author Rodrigo M. R. de Medeiros <\email{rodrigo.matheus@live.com}>
#'
#' @examples
#' mu <- 8
#' sigma <- 0.4
#' nu <- 10
#'
#' # Sample generation
#' x <- rlsl(10000, mu, sigma, nu)
#'
#' # Density
#' hist(x, prob = TRUE, main = "The Log-Slash Distribution", col = "white")
#' curve(dlsl(x, mu, sigma, nu), add = TRUE, col = 2, lwd = 2)
#' legend("topright", "Probability density function", col = 2, lwd = 2, lty = 1)
#'
#' # Distribution function
#' plot(ecdf(x), main = "The Log-Slash Distribution", ylab = "Distribution function")
#' curve(plsl(x, mu, sigma, nu), add = TRUE, col = 2, lwd = 2)
#' legend("bottomright", c("Emp. distribution function", "Theo. distribution function"),
#' col = c(1, 2), lwd = 2, lty = c(1, 1)
#' )
#'
#' # Quantile function
#' plot(seq(0.01, 0.99, 0.001), quantile(x, seq(0.01, 0.99, 0.001)),
#' type = "l",
#' xlab = "p", ylab = "Quantile function", main = "The Log-Slash Distribution"
#' )
#' curve(qlsl(x, mu, sigma, nu), add = TRUE, col = 2, lwd = 2, from = 0, to = 1)
#' legend("topleft", c("Emp. quantile function", "Theo. quantile function"),
#' col = c(1, 2), lwd = 2, lty = c(1, 1)
#' )
#'
NULL
# Density
#' @rdname lsl
#' @export
dlsl <- function(x, mu, sigma, nu, log = FALSE, ...) {
if (is.matrix(x)) d <- ncol(x) else d <- 1L
maxl <- max(c(length(x), length(mu), length(sigma), length(nu)))
x <- rep(x, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
pmf <- rep(-Inf, maxl)
# NaN index
pmf[which(mu <= 0 | sigma <= 0 | nu <= 0)] <- NaN
# Positive density index
id <- which(x > 0 & !is.nan(pmf))
# Transformations
z <- rep(NaN, length.out = maxl)
z[id] <- log(x[id] / mu[id]) / sigma[id]
pmf[id] <- dslash(z[id], nu = nu, log = TRUE) - log(sigma[id] * x[id])
if (!log) pmf <- exp(pmf)
if (d > 1L) matrix(pmf, ncol = d) else pmf
}
## Distribution function
#' @rdname lsl
#' @export
plsl <- function(q, mu, sigma, nu, lower.tail = TRUE, ...) {
if (is.matrix(q)) d <- ncol(q) else d <- 1L
maxl <- max(c(length(q), length(mu), length(sigma), length(nu)))
q <- rep(q, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
# Extended Box-Cox transformation
z <- rep(NaN, length.out = maxl)
id <- which(q > 0 & mu > 0 & sigma > 0 & nu > 0)
z[id] <- log(q[id] / mu[id]) / sigma[id]
cdf <- rep(NaN, length.out = maxl)
# Generating distribution
log_r <- function(u){
if (is.vector(u))
u <- matrix(u, nrow = length(u))
n <- dim(u)[1]
d <- dim(u)[2]
pmf <- matrix(0, n, d)
# NaN index
NaNid <- which(nu <= 0, arr.ind = TRUE)
pmf[NaNid] <- NaN
# Positive density index
id1 <- which(u > 0 & !is.nan(pmf), arr.ind = TRUE)
id2 <- which(u == 0 & !is.nan(pmf), arr.ind = TRUE)
pmf[id1] <- log(ig(nu + 0.5, u[id1]/2)) + log(nu) + (nu - 1) * log(2) -
0.5 * log(pi) - (nu + 0.5) * log(u[id1])
pmf[id2] <- log(2 * nu) - log(2 * nu + 1) - 0.5 * log(2 * pi)
if(d == 1L) as.numeric(pmf) else pmf
}
W <- distr::AbscontDistribution(d = function(x) exp(log_r(x^2)))
# cdf[id] <- pslash(z[id], nu = nu)
cdf[id] <- distr::p(W)(z[id])
cdf[which(q <= 0 & mu > 0 & sigma > 0 & nu > 0)] <- 0
if (!lower.tail) cdf <- 1 - cdf
if (d > 1L) matrix(cdf, ncol = d) else cdf
}
## Quantile function
#' @rdname lsl
#' @export
qlsl <- function(p, mu, sigma, nu, lower.tail = TRUE, ...) {
if (is.matrix(p)) d <- ncol(p) else d <- 1L
maxl <- max(c(length(p), length(mu), length(sigma), length(nu)))
p <- rep(p, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
if (!lower.tail) p <- 1 - p
qtf <- zp <- rep(NaN, length.out = maxl)
# z_p
id <- which(p > 0 & p < 1 & mu > 0 & sigma > 0 & nu > 0)
# Generating distribution
log_r <- function(u){
if (is.vector(u))
u <- matrix(u, nrow = length(u))
n <- dim(u)[1]
d <- dim(u)[2]
pmf <- matrix(0, n, d)
# NaN index
NaNid <- which(nu <= 0, arr.ind = TRUE)
pmf[NaNid] <- NaN
# Positive density index
id1 <- which(u > 0 & !is.nan(pmf), arr.ind = TRUE)
id2 <- which(u == 0 & !is.nan(pmf), arr.ind = TRUE)
pmf[id1] <- log(ig(nu + 0.5, u[id1]/2)) + log(nu) + (nu - 1) * log(2) -
0.5 * log(pi) - (nu + 0.5) * log(u[id1])
pmf[id2] <- log(2 * nu) - log(2 * nu + 1) - 0.5 * log(2 * pi)
if(d == 1L) as.numeric(pmf) else pmf
}
W <- distr::AbscontDistribution(d = function(x) exp(log_r(x^2)))
zp[id] <- distr::q(W)(p[id])
# Quantile function
id1 <- which(p > 0 & p < 1 & mu > 0 & sigma > 0 & nu > 0)
id2 <- which(p == 0 & mu > 0 & sigma > 0 & nu > 0)
id3 <- which(p == 1 & mu > 0 & sigma > 0 & nu > 0)
qtf[id1] <- exp(log(mu[id1]) + sigma[id1] * zp[id1])
qtf[id2] <- 0
qtf[id3] <- Inf
if (d > 1L) matrix(qtf, ncol = d) else qtf
}
# Random generation
#' @rdname lsl
#' @export
rlsl <- function(n, mu, sigma, nu) {
exp(log(mu) + sigma * rslash(n, nu = nu))
}
# BCS class
lsl <- function(x) {
out <- list()
# Abbreviation
out$abb <- "lsl"
# Name
out$name <- "Log-Slash"
# Number of parameters
out$npar <- 3
# Extra parameter
out$extrap <- TRUE
# Initial values -------------------------------------------------------------
out$start <- function(x) {
n <- length(x)
gamlss_fit <- suppressWarnings(try(gamlss::gamlss(x ~ 1, family = gamlss.dist::BCT(mu.link = "log"),
trace = FALSE, nu.fix = TRUE, nu.start = 0L), silent = TRUE))
if (unique(grepl("Error", gamlss_fit))) {
convergence <- FALSE
} else {
convergence <- gamlss_fit$converged
}
if (convergence) {
c(exp(stats::coef(gamlss_fit, "mu")), exp(stats::coef(gamlss_fit, "sigma")),
min(exp(stats::coef(gamlss_fit, "tau")), 20))
} else {
CV <- 0.75 * (stats::quantile(x, 0.75) - stats::quantile(x, 0.25)) / stats::median(x)
mu0 <- stats::median(x)
sigma0 <- asinh(CV / 1.5) * stats::qlogis(0.75)
z <- log(x / mu0) / sigma0
grid <- seq(1, 20, 1)
upsilon <- function(nu){
cdf <- sort(stats::dt(z, nu))
temp <- stats::qqnorm(stats::qnorm(cdf), plot.it = FALSE)
mean(abs(sort(temp$x) - sort(temp$y)))
}
out <- apply(matrix(grid), 1, upsilon)
nu0 <- grid[which.min(out)]
c(mu0, sigma0, nu0)
}
}
structure(out, class = "bcs")
}
# The slash distribution ---------------------------------------------------------------------------
## Probability density function
dslash <- function(x, mu = 0, sigma = 1, nu, log = FALSE) {
if (is.matrix(x)) d <- ncol(x) else d <- 1L
maxl <- max(c(length(x), length(mu), length(sigma), length(nu)))
x <- rep(x, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
nu <- rep(nu, length.out = maxl)
pmf <- rep(-Inf, length.out = maxl)
# NaN index
pmf[which(sigma <= 0 | nu <= 0)] <- NaN
id <- which(!is.nan(pmf))
pmf[id] <- slash_PDF(x[id], mu[id], sigma[id], nu[id], log)
if (d > 1L) matrix(pmf, ncol = d) else pmf
}
## Cumulative distribution function
pslash <- function(q, mu = 0, sigma = 1, nu, log.p = FALSE) {
if (is.matrix(q)) d <- ncol(q) else d <- 1L
maxl <- max(c(length(q), length(mu), length(sigma), length(nu)))
q <- rep(q, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
cdf <- rep(0, length.out = maxl)
# NaN index
cdf[which(sigma <= 0 | nu <= 0)] <- NaN
# Positive density index
id1 <- which(is.finite(q) & q != mu & !is.nan(cdf))
id2 <- which(q == mu & !is.nan(cdf))
id3 <- which(q == -Inf)
id4 <- which(q == Inf)
# Constructing the Slash distribution
W <- distr::AbscontDistribution(
d = function(x) dslash(x, nu = nu),
Symmetry = distr::SphericalSymmetry(0)
)
cdf[id1] <- distr::p(W)((q[id1] - mu[id1]) / sigma[id1])
cdf[id2] <- 0.5
cdf[id3] <- 0
cdf[id4] <- 1
if (log.p) cdf <- log(cdf)
if (d > 1L) matrix(cdf, ncol = d) else cdf
}
# Quantile function
qslash <- function(p, mu = 0, sigma = 1, nu) {
if (is.matrix(p)) d <- ncol(p) else d <- 1L
maxl <- max(c(length(p), length(mu), length(sigma), length(nu)))
p <- rep(p, length.out = maxl)
mu <- rep(mu, length.out = maxl)
sigma <- rep(sigma, length.out = maxl)
qtf <- rep(NA, maxl)
# NaN index
qtf[which(p < 0 | p > 1 | sigma <= 0 | nu <= 0)] <- NaN
# Positive density index
id1 <- which(p != 0.5 & p > 0 & p < 1 & !is.nan(qtf), arr.ind = TRUE)
id2 <- which(p == 0 & !is.nan(qtf), arr.ind = TRUE)
id3 <- which(p == 0.5 & !is.nan(qtf), arr.ind = TRUE)
id4 <- which(p == 1 & !is.nan(qtf), arr.ind = TRUE)
# Constructing the Slash distribution
W <- distr::AbscontDistribution(
d = function(x) dslash(x, nu = nu),
Symmetry = distr::SphericalSymmetry(0)
)
qtf[id1] <- distr::q(W)(p[id1])
qtf[id2] <- -Inf
qtf[id3] <- 0
qtf[id4] <- Inf
qtf <- mu + sigma * qtf
if (d > 1L) matrix(qtf, ncol = d) else qtf
}
# Random generation
rslash <- function(n, mu = 0, sigma = 1, nu) {
mu + sigma * stats::rnorm(n) / sqrt(stats::rbeta(n, nu, 1))
}
ig <- function(a, x) pmin(exp(lgamma(a) + stats::pgamma(x, a, scale = 1, log.p = TRUE)), .Machine$double.xmax)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.