Graphics | R Documentation |
Plots the time series
Graphics(especie, names.especie, esperanza, Variance, Plot.Tipe, Detail)
especie |
Matrix that contains at row i the bacterial taxa of bacteria i at all time points. |
names.especie |
Vector with the names of the bacteria in the same order that are placed in the |
esperanza |
Matrix that contains at row i the expected value of the bacterial taxa i at all time points. The bacteria must be placed in the same order than in |
Variance |
Matrix that contains at row i the variance of the bacterial taxa i at all time points. The bacteria must be placed in the same order than in |
Plot.Tipe |
Character. If |
Detail |
Character. If |
Returns the indicated plots.
names.especie=c("Bact1", "Bact2", "Bact3")
especie=cbind(c(0.5,0.3,0.2), c(0.6,0.3,0.1),c(0.4,0.1,0.5),c(0.4,0.1,0.5))
esperanza=especie[,c(1:3)]+0.1
Variance=matrix(c(runif(9,0.001,0.004)), 3,3)
Graphics(especie, names.especie, esperanza, Variance,"Data","no")
Graphics(especie, names.especie, esperanza, Variance,"DataExpected","no")
Graphics(especie, names.especie, esperanza, Variance,"All","no")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.