summary.VFP {VFP} | R Documentation |
Summary Objects of Class 'VFP'
Description
Summary Objects of Class 'VFP'
Usage
## S3 method for class 'VFP'
summary(
object,
model.no = NULL,
digits = 4,
type = c("simple", "complex"),
...
)
Arguments
object |
(object) of class 'VFP' |
model.no |
(integer) specifying a fitted model in 'x', if NULL the best fitting model will be printed, i.e. the one with min(RSS) |
digits |
(integer) number of significant digits |
type |
(character) "simple" = short summary, "complex" = calls the summary-method for objects of class "gnm" |
... |
additional parameters passed forward |
Author(s)
Andre Schuetzenmeister andre.schuetzenmeister@roche.com
Examples
library(VCA)
data(CA19_9)
fits.CA19_9 <- anovaVCA(result~site/day, CA19_9, by="sample")
# extract repeatability
mat.CA19_9 <- getMat.VCA(fits.CA19_9, "error")
res.CA19_9 <- fit.vfp(mat.CA19_9, 1:10)
summary(res.CA19_9)
print(res.CA19_9)
[Package VFP version 1.4.1 Index]