is.rosso | R Documentation |
Test if a variable or variable list is/are rosso-object(s).
is.rosso(x)
x |
variable or list. |
TRUE
if the object or all objects are of class rosso
.
# TRUE return
r1 <- MicrobialGrowth(example_data$time, example_data$y1, model="rosso")
r2 <- MicrobialGrowth.create(N0 = 0.14, Nmax = 1.43, mu = 0.07, lambda = 45,
xlim = c(0, 100), model="rosso")
is.rosso(r1)
is.rosso(r2)
is.rosso(c(r1, r2))
is.rosso(list(r1,r2))
# FALSE return
is.rosso(1)
is.rosso(list())
is.rosso(c(r1, r2, 1))
is.rosso(list(r1, r2, 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.