Function for Fitting Multi-Season Single-Species Occupancy Models Using Polya-Gamma Latent Variables
tPGOcc.Rd
Function for fitting multi-season single-species occupancy models using Polya-Gamma latent variables.
Usage
tPGOcc(occ.formula, det.formula, data, inits, priors, tuning,
n.batch, batch.length, accept.rate = 0.43, n.omp.threads = 1,
verbose = TRUE, ar1 = FALSE, n.report = 100,
n.burn = round(.10 * n.batch * batch.length), n.thin = 1, n.chains = 1,
k.fold, k.fold.threads = 1, k.fold.seed = 100, k.fold.only = FALSE, ...)
Arguments
- occ.formula
a symbolic description of the model to be fit for the occurrence portion of the model using R's model syntax. Only right-hand side of formula is specified. See example below. Random intercepts are allowed using lme4 syntax (Bates et al. 2015).
- det.formula
a symbolic description of the model to be fit for the detection portion of the model using R's model syntax. Only right-hand side of formula is specified. See example below. Random intercepts are allowed using lme4 syntax (Bates et al. 2015).
- data
a list containing data necessary for model fitting. Valid tags are
y
,occ.covs
, anddet.covs
.y
is a three-dimensional array with first dimension equal to the number of sites (\(J\)), second dimension equal to the maximum number of primary time periods (i.e., years or seasons), and third dimension equal to the maximum number of replicates at a given site.occ.covs
is a list of variables included in the occurrence portion of the model. Each list element is a different occurrence covariate, which can be site level or site/primary time period level. Site-level covariates are specified as a vector of length \(J\) while site/primary time period level covariates are specified as a matrix with rows corresponding to sites and columns correspond to primary time periods. Similarly,det.covs
is a list of variables included in the detection portion of the model, with each list element corresponding to an individual variable. In addition to site-level and/or site/primary time period-level, detection covariates can also be observational-level. Observation-level covariates are specified as a three-dimensional array with first dimension corresponding to sites, second dimension corresponding to primary time period, and third dimension corresponding to replicate.- inits
a list with each tag corresponding to a parameter name. Valid tags are
z
,beta
,alpha
,sigma.sq.psi
,sigma.sq.p
,sigma.sq.t
, andrho
. The value portion of each tag is the parameter's initial value.sigma.sq.psi
andsigma.sq.p
are only relevant when including random effects in the occurrence and detection portion of the occupancy model, respectively.sigma.sq.t
andrho
are only relevant whenar1 = TRUE
. Seepriors
description for definition of each parameter name. Additionally, the tagfix
can be set toTRUE
to fix the starting values across all chains. Iffix
is not specified (the default), starting values are varied randomly across chains.- priors
a list with each tag corresponding to a parameter name. Valid tags are
beta.normal
,alpha.normal
,sigma.sq.psi.ig
,sigma.sq.p.ig
,sigma.sq.t.ig
, andrho.unif
. Occupancy (beta
) and detection (alpha
) regression coefficients are assumed to follow a normal distribution. The hyperparameters of the normal distribution are passed as a list of length two with the first and second elements corresponding to the mean and variance of the normal distribution, which are each specified as vectors of length equal to the number of coefficients to be estimated or of length one if priors are the same for all coefficients. If not specified, prior means are set to 0 and prior variances set to 2.72.sigma.sq.psi
andsigma.sq.p
are the random effect variances for any unstructured occurrence or detection random effects, respectively, and are assumed to follow an inverse Gamma distribution. The hyperparameters of the inverse-Gamma distribution are passed as a list of length two with first and second elements corresponding to the shape and scale parameters, respectively, which are each specified as vectors of length equal to the number of random intercepts or of length one if priors are the same for all random effect variances.sigma.sq.t
andrho
are the AR(1) variance and correlation parameters for the AR(1) zero-mean temporal random effects, respectively.sigma.sq.t
is assumed to follow an inverse-Gamma distribution, where the hyperparameters are specified as a vector with elements corresponding to the shape and scale parameters, respectively.rho
is assumed to follow a uniform distribution, where the hyperparameters are specified in a vector of length two with elements corresponding to the lower and upper bounds of the uniform prior.- tuning
a list with each tag corresponding to a parameter name. Valid tags are
rho
. The value portion of each tag defines the initial tuning variance of the Adaptive sampler. See Roberts and Rosenthal (2009) for details.- n.batch
the number of MCMC batches in each chain to run for the Adaptive MCMC sampler. See Roberts and Rosenthal (2009) for details.
- batch.length
the length of each MCMC batch in each chain to run for the Adaptive MCMC sampler. See Roberts and Rosenthal (2009) for details.
- accept.rate
target acceptance rate for Adaptive MCMC. Default is 0.43. See Roberts and Rosenthal (2009) for details.
- n.omp.threads
a positive integer indicating the number of threads to use for SMP parallel processing. The package must be compiled for OpenMP support. For most Intel-based machines, we recommend setting
n.omp.threads
up to the number of hyperthreaded cores. Note,n.omp.threads
> 1 might not work on some systems. Currently only relevant for spatial models.- verbose
if
TRUE
, messages about data preparation, model specification, and progress of the sampler are printed to the screen. Otherwise, no messages are printed.- ar1
logical value indicating whether to include an AR(1) zero-mean temporal random effect in the model. If
FALSE
, the model is fit without an AR(1) temporal autocovariance structure. IfTRUE
, an AR(1) random effect is included in the model to account for temporal autocorrelation across the primary time periods.- n.report
the interval to report MCMC progress. Note this is specified in terms of batches, not MCMC samples.
- n.burn
the number of samples out of the total
n.samples
to discard as burn-in for each chain. By default, the first 10% of samples is discarded.- n.thin
the thinning interval for collection of MCMC samples. The thinning occurs after the
n.burn
samples are discarded. Default value is set to 1.- n.chains
the number of chains to run in sequence.
- k.fold
specifies the number of k folds for cross-validation. If not specified as an argument, then cross-validation is not performed and
k.fold.threads
andk.fold.seed
are ignored. In k-fold cross-validation, the data specified indata
is randomly partitioned into k equal sized subsamples. Of the k subsamples, k - 1 subsamples are used to fit the model and the remaining k samples are used for prediction. The cross-validation process is repeated k times (the folds). As a scoring rule, we use the model deviance as described in Hooten and Hobbs (2015). For cross-validation in multi-season models, the data are split along the site dimension, such that each hold-out data set consists ofJ / k.fold
sites sampled over all primary time periods during which data are available at each given site. Cross-validation is performed after the full model is fit using all the data. Cross-validation results are reported in thek.fold.deviance
object in the return list.- k.fold.threads
number of threads to use for cross-validation. If
k.fold.threads > 1
parallel processing is accomplished using the foreach and doParallel packages. Ignored ifk.fold
is not specified.- k.fold.seed
seed used to split data set into
k.fold
parts for k-fold cross-validation. Ignored ifk.fold
is not specified.- k.fold.only
a logical value indicating whether to only perform cross-validation (
TRUE
) or perform cross-validation after fitting the full model (FALSE
). Default value isFALSE
.- ...
currently no additional arguments
Note
Some of the underlying code used for generating random numbers from the Polya-Gamma distribution is taken from the pgdraw package written by Daniel F. Schmidt and Enes Makalic. Their code implements Algorithm 6 in PhD thesis of Jesse Bennett Windle (2013) https://repositories.lib.utexas.edu/handle/2152/21842.
References
Polson, N.G., J.G. Scott, and J. Windle. (2013) Bayesian Inference for Logistic Models Using Polya-Gamma Latent Variables. Journal of the American Statistical Association, 108:1339-1349.
Bates, Douglas, Martin Maechler, Ben Bolker, Steve Walker (2015). Fitting Linear Mixed-Effects Models Using lme4. Journal of Statistical Software, 67(1), 1-48. doi:10.18637/jss.v067.i01 .
Kery, M., & Royle, J. A. (2021). Applied hierarchical modeling in ecology: Analysis of distribution, abundance and species richness in R and BUGS: Volume 2: Dynamic and advanced models. Academic Press. Section 4.6.
Hooten, M. B., and Hobbs, N. T. (2015). A guide to Bayesian model selection for ecologists. Ecological monographs, 85(1), 3-28.
MacKenzie, D. I., J. D. Nichols, G. B. Lachman, S. Droege, J. Andrew Royle, and C. A. Langtimm. 2002. Estimating Site Occupancy Rates When Detection Probabilities Are Less Than One. Ecology 83: 2248-2255.
Author
Jeffrey W. Doser doserjef@msu.edu,
Andrew O. Finley finleya@msu.edu
Value
An object of class tPGOcc
that is a list comprised of:
- beta.samples
a
coda
object of posterior samples for the occupancy regression coefficients.- alpha.samples
a
coda
object of posterior samples for the detection regression coefficients.- z.samples
a three-dimensional array of posterior samples for the latent occupancy values, with dimensions corresponding to posterior sample, site, and primary time period. Note this object will contain predicted occupancy values for sites/primary time periods that were not sampled.
- psi.samples
a three-dimensional array of posterior samples for the latent occupancy probability values, with dimensions corresponding to posterior sample, site, and primary time period. Note this object will contain predicted occupancy probabilities for sites/primary time periods that were not sampled.
- sigma.sq.psi.samples
a
coda
object of posterior samples for variances of random intercepts included in the occupancy portion of the model. Only included if random intercepts are specified inocc.formula
.- sigma.sq.p.samples
a
coda
object of posterior samples for variances of random intercpets included in the detection portion of the model. Only included if random intercepts are specified indet.formula
.- beta.star.samples
a
coda
object of posterior samples for the occurrence random effects. Only included if random intercepts are specified inocc.formula
.- alpha.star.samples
a
coda
object of posterior samples for the detection random effects. Only included if random intercepts are specified indet.formula
.- theta.samples
a
coda
object of posterior samples for the AR(1) variance (sigma.sq.t
) and correlation (rho
) parameters. Only included ifar1 = TRUE
.- eta.samples
a
coda
object of posterior samples for the AR(1) random effects for each primary time period. Only included ifar1 = TRUE
.- like.samples
a three-dimensional array of posterior samples for the likelihood values associated with each site and primary time period. Used for calculating WAIC.
- rhat
a list of Gelman-Rubin diagnostic values for some of the model parameters.
- ESS
a list of effective sample sizes for some of the model parameters.
- run.time
execution time reported using
proc.time()
.- k.fold.deviance
scoring rule (deviance) from k-fold cross-validation. Only included if
k.fold
is specified in function call.
The return object will include additional objects used for
subsequent prediction and/or model fit evaluation. Note that detection
probability estimated values are not included in the model object, but can be
extracted using fitted()
. Note that if k.fold.only = TRUE
, the
return list object will only contain run.time
and k.fold.deviance
.
Examples
set.seed(500)
# Sites
J.x <- 10
J.y <- 10
J <- J.x * J.y
# Primary time periods
n.time <- sample(5:10, J, replace = TRUE)
n.time.max <- max(n.time)
# Replicates
n.rep <- matrix(NA, J, max(n.time))
for (j in 1:J) {
n.rep[j, 1:n.time[j]] <- sample(1:4, n.time[j], replace = TRUE)
}
# Occurrence --------------------------
beta <- c(0.4, 0.5, -0.9)
trend <- TRUE
sp.only <- 0
psi.RE <- list()
# Detection ---------------------------
alpha <- c(-1, 0.7, -0.5)
p.RE <- list()
# Temporal parameters -----------------
rho <- 0.7
sigma.sq.t <- 0.6
# Get all the data
dat <- simTOcc(J.x = J.x, J.y = J.y, n.time = n.time, n.rep = n.rep,
beta = beta, alpha = alpha, sp.only = sp.only, trend = trend,
psi.RE = psi.RE, p.RE = p.RE, sp = FALSE, ar1 = TRUE,
sigma.sq.t = sigma.sq.t, rho = rho)
# Package all data into a list
# Occurrence
occ.covs <- list(int = dat$X[, , 1],
trend = dat$X[, , 2],
occ.cov.1 = dat$X[, , 3])
# Detection
det.covs <- list(det.cov.1 = dat$X.p[, , , 2],
det.cov.2 = dat$X.p[, , , 3])
# Data list bundle
data.list <- list(y = dat$y,
occ.covs = occ.covs,
det.covs = det.covs)
# Priors
prior.list <- list(beta.normal = list(mean = 0, var = 2.72),
alpha.normal = list(mean = 0, var = 2.72),
rho.unif = c(-1, 1),
sigma.sq.t.ig = c(2, 0.5))
# Starting values
z.init <- apply(dat$y, c(1, 2), function(a) as.numeric(sum(a, na.rm = TRUE) > 0))
inits.list <- list(beta = 0, alpha = 0, z = z.init)
# Tuning
tuning.list <- list(rho = 0.5)
n.batch <- 20
batch.length <- 25
n.samples <- n.batch * batch.length
n.burn <- 100
n.thin <- 1
# Run the model
out <- tPGOcc(occ.formula = ~ trend + occ.cov.1,
det.formula = ~ det.cov.1 + det.cov.2,
data = data.list,
inits = inits.list,
priors = prior.list,
tuning = tuning.list,
n.batch = n.batch,
batch.length = batch.length,
verbose = TRUE,
ar1 = TRUE,
n.report = 25,
n.burn = n.burn,
n.thin = n.thin,
n.chains = 1)
#> ----------------------------------------
#> Preparing the data
#> ----------------------------------------
#> rho is not specified in initial values.
#> Setting initial value to random value from the prior distribution
#> sigma.sq.t is not specified in initial values.
#> Setting initial value to random value between 0.5 and 10
#> ----------------------------------------
#> Model description
#> ----------------------------------------
#> Multi-season Occupancy Model with Polya-Gamma latent variable
#> fit with 100 sites and 10 primary time periods.
#>
#> Samples per chain: 500 (20 batches of length 25)
#> Burn-in: 100
#> Thinning Rate: 1
#> Number of Chains: 1
#> Total Posterior Samples: 400
#>
#> Using an AR(1) temporal autocorrelation matrix in the occurrence sub-model.
#>
#> Source compiled with OpenMP support and model fit using 1 thread(s).
#>
#> ----------------------------------------
#> Chain 1
#> ----------------------------------------
#> Sampling ...
#> Batch: 20 of 20, 100.00%
summary(out)
#>
#> Call:
#> tPGOcc(occ.formula = ~trend + occ.cov.1, det.formula = ~det.cov.1 +
#> det.cov.2, data = data.list, inits = inits.list, priors = prior.list,
#> tuning = tuning.list, n.batch = n.batch, batch.length = batch.length,
#> verbose = TRUE, ar1 = TRUE, n.report = 25, n.burn = n.burn,
#> n.thin = n.thin, n.chains = 1)
#>
#> Samples per Chain: 500
#> Burn-in: 100
#> Thinning Rate: 1
#> Number of Chains: 1
#> Total Posterior Samples: 400
#> Run Time (min): 0.0048
#>
#> Occurrence (logit scale):
#> Mean SD 2.5% 50% 97.5% Rhat ESS
#> (Intercept) -0.3437 0.2746 -0.7868 -0.3854 0.2428 NA 21
#> trend 0.4287 0.2666 -0.1089 0.4387 0.9369 NA 25
#> occ.cov.1 -1.0653 0.1709 -1.3994 -1.0633 -0.7402 NA 55
#>
#> Detection (logit scale):
#> Mean SD 2.5% 50% 97.5% Rhat ESS
#> (Intercept) -1.1109 0.1327 -1.3596 -1.1060 -0.8574 NA 59
#> det.cov.1 0.6242 0.1032 0.4307 0.6201 0.8406 NA 62
#> det.cov.2 -0.4576 0.0914 -0.6343 -0.4515 -0.2766 NA 198
#>
#> Occurrence AR(1) Temporal Covariance:
#> Mean SD 2.5% 50% 97.5% Rhat ESS
#> sigma.sq.t 0.3734 0.5892 0.1053 0.2738 0.9716 NA 72
#> rho 0.1698 0.4497 -0.7299 0.1878 0.8979 NA 9