Learn R Programming

parafac4microbiome

Overview

The parafac4microbiome package enables R users with an easy way to create Parallel Factor Analysis (PARAFAC) models for longitudinal microbiome data.

  • processDataCube() can be used to process the microbiome count data appropriately for a multi-way data array.
  • parafac() allows the user to create a Parallel Factor Analysis model of the multi-way data array.
  • assessModelQuality() helps the user select the appropriate number of components by randomly initializing many PARAFAC models and inspecting various metrics of interest.
  • assessModelStability() helps the user select the appropriate number of components by bootstrapping or jack-knifing samples and inspecting if the model outcome is similar.
  • plotPARAFACmodel() helps visually inspect the PARAFAC model.

This package also comes with three example datasets.

Documentation

A basic introduction to the package is given in vignette("Introduction") and modelling the example datasets are elaborated in their respective vignettes vignette("Fujita2023"), vignette("Shao2019") and vignette("vanderPloeg2024").

These vignettes and all function documentation can be found here.

Installation

The parafac4microbiome package can be installed from CRAN using:

install.packages("parafac4microbiome")

Development version

You can install the development version of parafac4microbiome from GitHub with:

# install.packages("devtools")
devtools::install_github("GRvanderPloeg/parafac4microbiome")

Citation

Please use the following citation when using this package:

  • van der Ploeg, G. R., Westerhuis, J., Heintz-Buschart, A., & Smilde, A. (2025). parafac4microbiome: Exploratory analysis of longitudinal microbiome data using Parallel Factor Analysis. mSystems 10:e00472-25. https://doi.org/10.1128/msystems.00472-25

Usage

library(parafac4microbiome)
set.seed(123)

# Process the data cube
processedFujita = processDataCube(Fujita2023,
                                  sparsityThreshold=0.99,
                                  CLR=TRUE,
                                  centerMode=1,
                                  scaleMode=2)

# Make a PARAFAC model
model = parafac(processedFujita$data, nfac=3, nstart=10, output="best")

# Sign flip components to make figure interpretable and comparable to the paper.
# This has no effect on the model or the fit.
model$Fac[[1]][,2] = -1 * model$Fac[[1]][,2] # sign flip mode 1 component 2
model$Fac[[2]][,1] = -1 * model$Fac[[2]][,1] # sign flip mode 2 component 1
model$Fac[[2]][,3] = -1 * model$Fac[[2]][,3] # sign flip mode 2 component 3
model$Fac[[3]] = -1 * model$Fac[[3]]         # sign flip all of mode 3

# Plot the PARAFAC model using some metadata
plotPARAFACmodel(model$Fac, processedFujita,
                 numComponents = 3,
                 colourCols = c("", "Genus", ""),
                 legendTitles = c("", "Genus", ""),
                 xLabels = c("Replicate", "Feature index", "Time point"),
                 legendColNums = c(0,5,0),
                 arrangeModes = c(FALSE, TRUE, FALSE),
                 continuousModes = c(FALSE,FALSE,TRUE),
                 overallTitle = "Fujita PARAFAC model")

Getting help

If you encounter an unexpected error or a clear bug, please file an issue with a minimal reproducible example here on Github. For questions or other types of feedback, feel free to send an email.

Copy Link

Version

Install

install.packages('parafac4microbiome')

Monthly Downloads

240

Version

1.3.3

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Geert Roelof van der Ploeg

Last Published

August 21st, 2026

Functions in parafac4microbiome (1.3.3)

vanderPloeg2024

vanderPloeg2024 longitudinal multi-omics dataset
vect_to_fac

Convert vectorized output of PARAFAC to a Fac list object with all loadings per mode.
sortComponents

Sort PARAFAC components based on variance explained per component.
transformPARAFACloadings

Transform PARAFAC loadings to an orthonormal basis. Note: this function only works for 3-way PARAFAC models.
Fujita2023

Fujita2023 longitudinal microbiome data
fac_to_vect

Vectorize Fac object
calculateFMS

Calculate Factor Match Score for all initialized models.
corcondia

Core Consistency Diagnostic (CORCONDIA) calculation
assessModelStability

Bootstrapping procedure to determine PARAFAC model stability for a given number of components.
assessModelQuality

Create randomly initialized models to determine the correct number of components by assessing model quality metrics.
calculateVarExp

Calculate the variation explained by a PARAFAC model.
calculateSparsity

Calculate sparsity across the feature mode of a multi-way array.
calcVarExpPerComponent

Calculate the variance explained of a PARAFAC model, per component
importPhyloseq

Import Phyloseq object for PARAFAC modelling
multiwayCenter

Center a multi-way array
initializePARAFAC

Initialize PARAFAC algorithm input vectors
multiwayCLR

Perform a centered log-ratio transform over a multi-way array
multiwayScale

Scale a multi-way array
importTreeSummarizedExperiment

Import TreeSummarizedExperiment object for PARAFAC modelling
parafac_core_als

Internal PARAFAC alternating least-squares (ALS) core algorithm
flipLoadings

Sign flip the loadings of many randomly initialized models to make consistent overview plots.
parafac

Parallel Factor Analysis
reshapeData

Reorganize longitudinal microbiome into a data cube ready for PARAFAC modelling.
parafac_fun

PARAFAC loss function calculation
plotModelMetric

Plot diagnostics of many initialized PARAFAC models.
plotPARAFACmodel

Plot a PARAFAC model
reinflateTensor

Create a tensor out of a set of matrices similar to a component model.
plotModelTCCs

Plots Tucker Congruence Coefficients of randomly initialized models.
plotModelStability

Plot a summary of the loadings of many initialized parafac models.
processDataCube

Process a multi-way array of count data.
reinflateFac

Calculate Xhat from a model Fac object
Shao2019

Shao2019 longitudinal microbiome data
parafac4microbiome-package

parafac4microbiome: Parallel Factor Analysis Modelling of Longitudinal Microbiome Data
%>%

Pipe operator