| ZIPLNfit_spherical {PLNmodels} | R Documentation |
An R6 Class to represent a ZIPLNfit in a standard, general framework, with spherical residual covariance
Description
An R6 Class to represent a ZIPLNfit in a standard, general framework, with spherical residual covariance
An R6 Class to represent a ZIPLNfit in a standard, general framework, with spherical residual covariance
Super class
PLNmodels::ZIPLNfit -> ZIPLNfit_spherical
Active bindings
nb_param_plnnumber of parameters in the PLN part of the current model
vcov_modelcharacter: the model used for the residual covariance
Methods
Public methods
Inherited methods
Method new()
Initialize a ZIPLNfit_spherical model
Usage
ZIPLNfit_spherical$new(data, control)
Arguments
dataa named list used internally to carry the data matrices
controla list for controlling the optimization. See details.
Method clone()
The objects of this class are cloneable with this method.
Usage
ZIPLNfit_spherical$clone(deep = FALSE)
Arguments
deepWhether to make a deep clone.
Examples
## Not run:
# See other examples in function ZIPLN
data(trichoptera)
trichoptera <- prepare_data(trichoptera$Abundance, trichoptera$Covariate)
myPLN <- ZIPLN(Abundance ~ 1, data = trichoptera, control = ZIPLN_param(covariance = "spherical"))
class(myPLN)
print(myPLN)
## End(Not run)
[Package PLNmodels version 1.2.0 Index]