Learn R Programming

VICatMix: Variational Inference for Categorical Mixture Models

VICatMix is a variational Bayesian finite mixture model designed for the clustering of categorical data, implemented as an R package incorporating C++ (via Rcpp and RcppArmadillo) for faster computation. The package provides options to include variable selection to enhance its performance on high-dimensional or noisy data, and to incorporate model averaging and summarisation over multiple different initialisations for improved accuracy. The package additionally contains functions to generate sample clustered binary/categorical data for testing. For more details on the model, please refer to the arXiv preprint.

Installation

To install the VICatMix package, you can use the devtools package to install directly from GitHub:

install.packages("devtools")
devtools::install_github("j-ackierao/VICatMix")
library(VICatMix)

Note VICatMix depends on the Rcpp and RcppArmadillo packages, which both require an appropriate C++ compiler.

Examples

An example of generating sample binary data for clustering, with 'true' cluster labels.

generatedData <- generateSampleDataBin(1000, 4, c(0.1, 0.2, 0.3, 0.4), 100, 0)

An example of running one initialisation of VICatMix on sample data without variable selection:

result <- runVICatMix(generatedData[[1]], 10, 0.01) 

An example of implementing model averaging over 30 initialisations of VICatMix on sample data with variable selection:

result <- runVICatMixVarSelAvg(generatedData[[1]], 10, 0.01, inits = 30)

Copy Link

Version

Install

install.packages('VICatMix')

Monthly Downloads

129

Version

1.0

License

GPL (>= 3)

Issues

Pull Requests

Stars

Forks

Maintainer

Jackie Rao

Last Published

November 27th, 2024

Functions in VICatMix (1.0)

runVICatMix

runVICatMix
generateSampleDataCat

generateSampleDataCat
runVICatMixVarSel

runVICatMixVarSel
VI.lb

Compute the modified Variation of Information from swapping log and expectation.
runVICatMixVarSelAvg

runVICatMixVarSelAvg
runVICatMixAvg

runVICatMixAvg
minVI

Minimize the posterior expected Variation of Information
generateSampleDataBin

generateSampleDataBin