R/ZIPLNfit-class.R
ZIPLNfit_fixed.Rd
An R6 Class to represent a ZIPLNfit in a standard, general framework, with fixed (inverse) residual covariance
An R6 Class to represent a ZIPLNfit in a standard, general framework, with fixed (inverse) residual covariance
PLNmodels::ZIPLNfit
-> ZIPLNfit_fixed
nb_param_pln
number of parameters in the PLN part of the current model
vcov_model
character: the model used for the residual covariance
if (FALSE) { # \dontrun{
# See other examples in function ZIPLN
data(trichoptera)
trichoptera <- prepare_data(trichoptera$Abundance, trichoptera$Covariate)
myPLN <- ZIPLN(Abundance ~ 1, data = trichoptera,
control = ZIPLN_param(Omega = diag(ncol(trichoptera$Abundance))))
class(myPLN)
print(myPLN)
} # }