#' Generate random samples from the Polya-Gamma distribution
#'
#' @title Generate random samples from the Polya-Gamma distribution, PG(b,c)
#' @param b Either a single integer scalar, or a vector of integers, corresponding to the
#' 'b' parameter for the PG(b,c) distribution. If \code{b} is a scalar, then
#' the same value is paired with every value in \code{c}; if \code{b} is a vector
#' then it must be of the same length as the \code{c} parameter.
#' @param c A vector of real numbers corresponding to the 'c' parameter for the PG(b,c) distribution.
#' @param cores A positive integer corresponding to the number of openMP cores to use.
#' @param threshold An integer that gives the number b at which a normal approximation (central limit theorm) is used. Default is 170.
#' @section Details:
#' This code generates random variates from the Polya-Gamma distribution with desired 'b' and 'c' parameters.
#' The underlying code is written in C and is an implementation of the algorithm described in J. Windle's PhD thesis.
#'
#' The main application of the Polya-Gamma distribution is in Bayesian analysis as it
#' allows for a data augmentation (via a scale mixture of normals) approach for representation
#' of the logistic regression likelihood (see Example 2 below).
#' @return A vector of samples from the Polya-Gamma distribution, one for each entry of \code{c}
#'
#' @note To cite this package please reference:
#'
#' Makalic, E. & Schmidt, D. F.
#' High-Dimensional Bayesian Regularised Regression with the BayesReg Package
#' arXiv:1611.06649, 2016 \url{https://arxiv.org/pdf/1611.06649.pdf}
#'
#' A MATLAB-compatible implementation of the sampler in this package can be obtained from:
#'
#' \url{http://dschmidt.org/?page_id=189}
#'
#' @references
#'
#' Jesse Bennett Windle
#' Forecasting High-Dimensional, Time-Varying Variance-Covariance Matrices
#' with High-Frequency Data and Sampling Polya-Gamma Random Variates for
#' Posterior Distributions Derived from Logistic Likelihoods,
#' PhD Thesis, 2013
#'
#' Bayesian Inference for Logistic Models Using Polya-Gamma Latent Variables
#' Nicholas G. Polson, James G. Scott and Jesse Windle,
#' Journal of the American Statistical Association
#' Vol. 108, No. 504, pp. 1339--1349, 2013
#'
#' Chung, Y.: Simulation of truncated gamma variables,
#' Korean Journal of Computational & Applied Mathematics, 1998, 5, 601-610
#'
#' @examples
#' # -----------------------------------------------------------------
#' # Example 1: Simulated vs exact moments
#' u = matrix(1,1e6,1)
#' x = pgdraw(1,0.5*u)
#' mean(x)
#' var(x)
#' pgdraw.moments(1,0.5)
#'
#' x = pgdraw(2,2*u)
#' mean(x)
#' var(x)
#' pgdraw.moments(2,2)
#'
#'
#' # -----------------------------------------------------------------
#' # Example 2: Simple logistic regression
#' # Sample from the following Bayesian hierarchy:
#' # y_i ~ Be(1/(1+exp(-b)))
#' # b ~ uniform on R (improper)
#' #
#' # which is equivalent to
#' # y_i - 1/2 ~ N(b, 1/omega2_i)
#' # omega2_i ~ PG(1,0)
#' # b ~ uniform on R
#' #
#' sample_simple_logreg <- function(y, nsamples)
#' {
#' n = length(y)
#' omega2 = matrix(1,n,1) # Polya-Gamma latent variables
#' beta = matrix(0,nsamples,1)
#'
#' for (i in 1:nsamples)
#' {
#' # Sample 'beta'
#' s = sum(omega2)
#' m = sum(y-1/2)/s
#' beta[i] = rnorm(1, m, sqrt(1/s))
#
#' # Sample P-G L.Vs
#' omega2 = pgdraw(1, matrix(1,n,1)*beta[i])
#' }
#' return(beta)
#' }
#'
#' # 3 heads, 7 tails; ML estimate of p = 3/10 = 0.3
#' y = c(1,1,1,0,0,0,0,0,0,0)
#'
#' # Sample
#' b = sample_simple_logreg(y, 1e4)
#' hist(x=b)
#'
#' # one way of estimating of 'p' from posterior samples
#' 1/(1+exp(-mean(b)))
#'
#'
#' @seealso \code{\link{pgdraw.moments}}
#' @export
pgdraw <- function(b, c, cores = 1L, threshold = 170L) {
# Check inputs
if (length(b) > 1 && length(b) != length(c))
stop("b parameter must either be of length one, or the same length as the c parameter")
if (any(b <= 0) || !all(floor(b) == b, na.rm = T))
stop("b parameter must contain only positive integers")
if (!is.integer(cores) || length(cores) != 1 || cores <= 0)
stop("cores must be a positive integer")
if (!is.integer(threshold) || length(threshold) != 1 || threshold <= 0)
stop("threshold must be a positive integer")
rcpp_pgdraw(b = b, c = c, cores = cores, threshold = threshold)
}
#' Compute exact first and second moments for the Polya-Gamma distribution
#'
#' @title Compute exact first and second moments for the Polya-Gamma distribution, PG(b, c)
#' @param b The 'b' parameter of the Polya-Gamma distribution.
#' @param c The 'c' parameter of the Polya-Gamma distribution.
#' @section Details:
#' This code computes the exact mean and variance of the Polya-Gamma distribution for the specified parameters.
#' @return A list containing the mean and variance.
#'
#' @references
#'
#' Jesse Bennett Windle
#' Forecasting High-Dimensional, Time-Varying Variance-Covariance Matrices
#' with High-Frequency Data and Sampling Polya-Gamma Random Variates for
#' Posterior Distributions Derived from Logistic Likelihoods
#' PhD Thesis, 2013
#'
#' Bayesian Inference for Logistic Models Using Polya-Gamma Latent Variables
#' Nicholas G. Polson, James G. Scott and Jesse Windle
#' Journal of the American Statistical Association
#' Vol. 108, No. 504, pp. 1339--1349, 2013
#'
#' @examples
#' # -----------------------------------------------------------------
#' # Example: Simulated vs exact moments
#'
#' u = matrix(1,1e6,1)
#' x = pgdraw(1,0.5*u)
#' mean(x)
#' var(x)
#' pgdraw.moments(1,0.5)
#'
#' x = pgdraw(2,2*u)
#' mean(x)
#' var(x)
#' pgdraw.moments(2,2)
#'
#'
#' @seealso \code{\link{pgdraw}}
#' @export
pgdraw.moments <- function(b, c)
{
if (!is_positive_integer(b, 1))
stop("b must be a positive integer value.")
if (!is_numeric(c, 1))
stop("c must be a numeric value.")
rv = list()
z <- abs(c / 2)
if (z < 1e-12) {
# rv$mu = 1.0 / 4.0
# rv$var = 1.0 / 24.0
rv$mu = 0.25 * (b * (1.0 - 1.0/3.0) * z^2 + 2.0 / 15.0 * z^4 - 17.0 / 315.0 * z^6);
rv$var = 0.0625 * ((b + 1.0) * b * (1.0 - 1.0 / 3.0 * z^2 + 2.0 / 15.0 * z^4 - 17.0 / 315.0 * z^6)^2 +
b * ((-1.0 / 3.0) + 2.0 / 15.0 * z^2 - 17.0 / 315.0 * z^4)) - rv$mu^2
} else {
z <- abs(c / 2)
# rv$mu = b/2/c*tanh(c/2)
# rv$var = b/(4*c^3)*(sinh(c)-c)*(1/cosh(c/2)^2)
rv$mu = 0.25 * (b * tanh(z) / z);
rv$var = 0.0625 * ((b + 1.0) * b * (tanh(z) / z)^2 + b * ((tanh(z) - z) / (z)^3)) - rv$mu^2
}
return(rv)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.