getModel.PLNPCAfamily {PLNmodels} | R Documentation |
Model extraction from a collection of models
Description
Model extraction from a collection of models
Usage
## S3 method for class 'PLNPCAfamily'
getModel(Robject, var, index = NULL)
getModel(Robject, var, index)
## S3 method for class 'PLNmixturefamily'
getModel(Robject, var, index = NULL)
## S3 method for class 'Networkfamily'
getModel(Robject, var, index = NULL)
## S3 method for class 'PLNnetworkfamily'
getModel(Robject, var, index = NULL)
## S3 method for class 'ZIPLNnetworkfamily'
getModel(Robject, var, index = NULL)
Arguments
Robject |
an R6 object with class |
var |
value of the parameter ( |
index |
Integer index of the model to be returned. Only the first value is taken into account. |
Value
Sends back an object with class PLNPCAfit
or PLNnetworkfit
.
Methods (by class)
-
getModel(PLNPCAfamily)
: Model extraction forPLNPCAfamily
-
getModel(PLNmixturefamily)
: Model extraction forPLNmixturefamily
-
getModel(Networkfamily)
: Model extraction forPLNnetworkfamily
orZIPLNnetworkfamily
-
getModel(PLNnetworkfamily)
: Model extraction forPLNnetworkfamily
-
getModel(ZIPLNnetworkfamily)
: Model extraction forZIPLNnetworkfamily
Examples
## Not run:
data(trichoptera)
trichoptera <- prepare_data(trichoptera$Abundance, trichoptera$Covariate)
myPCA <- PLNPCA(Abundance ~ 1 + offset(log(Offset)), data = trichoptera, ranks = 1:5)
myModel <- getModel(myPCA, 2)
## End(Not run)