konez

K-aggregated count data regression with covariates and random effects

View the Project on GitHub HVoltBb/konez

konez

An R package for k-aggregated count data regression and simulation with covariates and random effects

What is k-aggregation?

K-aggregation is a modelling technique to accommodate excess ones in count data. Many count data of rare events have an excess amount of ones such that traditional distributions, e.g., Poisson, negative binomial and Conway-Maxwell-Poisson distributions, under-estimate the probability of the one count. K-aggregated transformation is a generalization of the baseline distributions, and as a result, the fit of a selected k-aggregated model can’t get any worse than the baseline model. The selected k-aggregated model is at least as good as the baseline model.

If what I just said makes perfect sense to you, then you can skip reading the paper. It is not a difficult paper to read, I certainly hope not. So, what is a k-aggregated model, anyway?

The long answer is “K-aggregated transformation of discrete distributions improves modeling count data with excess ones”, and the short answer is the following picture (Figure 1).

A k-aggregated distribution

Figure 1. The probability mass function of a k-aggregated distribution over the positive range.

In that figure, I plotted the probability mass function of a k-aggregated distribution P(x) only over the positive range. The probability of zero would have a zero-inflated or hurdle structure, which would complicate the picture. So, I left P(0) out, but you can always add it back in. The k-aggregated distribution P(x) is constructed from a baseline count distribution Pb(x), which has probabilities depicted as those maroon boxes. P(1) is constructed by stacking Pb(1) through Pb(k+1), and for n>1, P(n) is Pb(k+n). Specifically, with k=0, P(x) is equivalent to Pb(x). The letter “k” has no other significance than an index variable. Any other letter could have been used, but when I originally wrote the code, it was the letter “k” that was used in the loop to sum up those Pbs.

It is a simple idea that works on many datasets.

Errata

K-aggregated transformation of discrete distributions improves modeling count data with excess ones in Ecological Modelling

  1. On page 4, left column, line 3: is the gamma function, not the lower case as appeared in the text. Apparently “\Gamma” was auto-corrected to “\gamma” during production. It was even rendered as in the final proof, even through the latex is correct.

  2. The first sentence of section 2.3 should be “To model excess ones, we aggregated the initial k+1 probabilities of an original distribution g(x) over the positive range to represent the probability of a singleton outcome, and left shifted remaining probabilities to represent the probability of two or more counts, “. The original sentence wasn’t clear.

How to install

First, you will need R package devtools. Run the following command in R, if you don’t have devtools on your computer.

install.packages('devtools') # You don't need this line if you already have it on you computer

Either one of the following method can be used to install and load konez package:

The functionality of this package depends on JAGS 4.X.X, which can be downloaded at http://mcmc-jags.sourceforge.net.

Build-in datasets

There are four datasets included in this package, and they are seabird bycatch (partial), Legionnaire’s disease incidence in Singapore, Leadbeater’s possum abundance and frigatebird nesting sites. These datasets were used as case studies in a paper in Ecological Modelling.

These datasets were either extracted from published literature or downloaded directly from the publisher’s data repository. Seabird bycatch data is only a partial summary, only enough to generate a histogram to view the distribution of counts. To replicate the results presented in that manuscript, however, you need to acquire the whole dataset from the original authors of the publication or from relevant authorities. The other datasets are the same as the ones used in the manuscript. Relevant references are given below.

I do not either own or maintain any of the datasets mentioned above. Any data related questions should be directed toward the respective authors or relevant authorities.

About running time

Build-in datasets are farely small, and the running time is about at most a couple of minuites for these datasets. However, if your dataset is large or you have many covariates in your model or your model suffers from some degrees of colinearity (many models do), running time will be more than just a few minutes. For example, on a datastet with around 15 thousand entries with less than 10 covariates, it takes 6 hours to fit a single k-aggregated GLM. My advice here is that

  1. Test run on a small sample (a few hundred representative entries)
  2. Toggle up the MCMC sampling frequency while maintaining good samples
  3. (Optional) Deploy the code on a computer cluster if you have access to one
  4. For hurdle models, you only need to fit the binary part once, which will stay the same among different count models. For zero-inflated models, there’s not much you can do but fit the whole model each time either bianry or count model changes

Tutorial

I plan to add a tutorial on how to use k-aggregated models from start to finish. Sections to include are:

  1. Data formating
  2. Fitting a family of k-aggregated model
  3. Model selection based on DIC
  4. Model prediction

If there is any questions to me, contact me at eiDOTog@gmail.com.

Thanks,

Can Zhou

7/7/2019 (updated)