View source: R/integralSystem.R
integralSystem | R Documentation |
This function accepts time series of OTU measurements and the linear equation system for its coefficients, as described in cited article.
integralSystem(time_series, kind = "integral", removeZeros = TRUE)
time_series |
An |
kind |
Charachter, one of |
removeZeros |
Logical, for the |
A list of lists (one for each OTU) with two elements:
A
The coefficient matrix for the system
b
The right side of the system
P. H. Kloppers and J. C. Greeff. “Lotka-Volterra model parameter estimation using experiential data”. In: Appl. Math. Comput. 224 (Nov. 2013), pp. 817–825. ISSN: 0096-3003. DOI: https://doi.org/10.1016/j.amc.2013.08.093
library(micInt) library(phyloseq) data("seawater") subsetted_seawater <- subset_samples(seawater, Reactor == 2) integralSystem(OTU_time_series(subsetted_seawater,"Week"), kind = "log_integral")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.