knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 12, fig.height = 6 ) options(tibble.print_min = 6L, tibble.print.max = 6L, digits = 3) options(rmarkdown.html_vignette.check_title = FALSE)
Welcome to the parafac4microbiome
R package! In this vignette we explain the datasets that available in this package, how you can model them using PARAFAC, and how to plot the outcome. We require the following packages and dependencies.
library(parafac4microbiome) library(dplyr) library(ggplot2)
The parafac4microbiome
package comes with three exemplary datasets: Fujita2023
, Shao2019
and vanderPloeg2024
. These refer to the first authors of their respective papers. Each of the dataset objects are lists with the following contents:
We briefly show what the data in these datasets look like and then focus on Fujita2023
for the remainder of this vignette. For details on the datasets we refer to the parafac4microbiome paper and to the original papers as listed in their respective help files. Modelling and selecting the appropriate number components are explained in more detail in the vignettes corresponding to each dataset: vignette("Fujita2023_analysis")
, vignette("Shao2019_analysis")
and vignette("vanderPloeg2024_analysis")
.
dim(Fujita2023$data) dim(Shao2019$data) dim(vanderPloeg2024$data) # We focus on Fujita2023 head(Fujita2023$data[,,1]) head(Fujita2023$mode1) head(Fujita2023$mode2) head(Fujita2023$mode3)
As shown above, the data cube in Fujita2023$data
contains unprocessed counts. The function processDataCube()
performs the processing of these counts with the following steps:
compositions::clr()
function with a pseudo-count of one (on all features, prior to selection based on sparsity).The outcome of processing is a new version of the dataset. Please refer to the documentation of processDataCube()
for more information.
processedFujita = processDataCube(Fujita2023, sparsityThreshold=0.99, CLR=TRUE, centerMode=1, scaleMode=2) head(processedFujita$data[,,1])
The processed data is ready to be modeled using Parallel Factor Analysis. Here we arbitrarily set the number of factors (i.e. the number of components) to be three. This is normally the outcome of a more detailed investigation into the correct number of components, described in vignette("Fujita2023_analysis")
, vignette("Shao2019_analysis")
and vignette("vanderPloeg2024_analysis")
. The output of the function is a list object containing the PARAFAC loadings in each mode in model$Fac
and some statistics like R-squared and the sum of squared error.
set.seed(0) # for reproducibility model = parafac(processedFujita$data, nfac=3, verbose=FALSE) head(model$Fac[[1]]) head(model$Fac[[2]]) head(model$Fac[[3]]) model$varExp
This model explains r model$varExp
percent of the variation in the processed data cube.
The plotPARAFACmodel()
function gives the user full control over how they want to visualize their model. As such, there are a lot of plotting options that can be used, which you can see below. A brief overview:
For a full overview, please refer to the documentation of plotPARAFACmodel()
.
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")
This concludes the introduction to the parafac4microbiome
package. We hope this gives you sufficient information to get started. For more details on modelling specific datasets, please refer to vignette("Fujita2023_analysis")
, vignette("Shao2019_analysis")
and vignette("vanderPloeg2024_analysis")
.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.