coef.VFP: Extract Model-Coefficients from VFP-Objects.

View source: R/methods.R

coef.VFPR Documentation

Extract Model-Coefficients from VFP-Objects.

Description

Extract Model-Coefficients from VFP-Objects.

Usage

## S3 method for class 'VFP'
coef(object, model.no = NULL, ...)

Arguments

object

(object) of class "VFP"

model.no

(integer) specifying one of models 1:10, must be one of the fitted models

...

additional parameters passed forward

Value

(numeric) model coefficients

Author(s)

Andre Schuetzenmeister andre.schuetzenmeister@roche.com Florian Dufey florian.dufey@roche.com

Examples


library(VCA)
data(VCAdata1)
lst <- anovaVCA(y~(device+lot)/day/run, VCAdata1, by="sample")
mat <- getMat.VCA(lst)		# automatically selects "total"
res <- fit.vfp(model.no=1:10, Data=mat)
coef(res)


VFP documentation built on Nov. 10, 2022, 5:12 p.m.

Related to coef.VFP in VFP...