Description Usage Arguments Value Author(s) See Also Examples
For model lists of class 'modlist' or 'replist', is.outlier
returns a vector of logicals for each run if they are outliers (i.e. sigmoidal or kinetic) or not.
1 | is.outlier(object)
|
object |
an object of class 'modlist' or 'replist'. |
A vector of logicals with run names.
Andrej-Nikolai Spiess
KOD
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Analyze in respect to amplification
## efficiency outliers.
ml1 <- modlist(reps, 1, 2:5)
res1 <- KOD(ml1, check = "uni2")
## Which runs are outliers?
outl <- is.outlier(res1)
outl
which(outl)
## Not run:
## Test for sigmoidal outliers
## with the 'testdat' dataset.
ml2 <- modlist(testdat, model = l5, check = "uni2")
is.outlier(ml2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.