coef.ZIPLNfit {PLNmodels} | R Documentation |
Extract model coefficients
Description
Extracts model coefficients from objects returned by ZIPLN()
and its variants
Usage
## S3 method for class 'ZIPLNfit'
coef(object, type = c("count", "zero", "precision", "covariance"), ...)
Arguments
object |
an R6 object with class |
type |
type of parameter that should be extracted. Either "count" (default) for |
... |
additional parameters for S3 compatibility. Not used |
Value
A matrix of coefficients extracted from the ZIPLNfit model.
See Also
Examples
data(scRNA)
# data subsample: only 100 random cell and the 50 most varying transcript
subset <- sample.int(nrow(scRNA), 100)
myPLN <- ZIPLN(counts[, 1:50] ~ 1 + offset(log(total_counts)), subset = subset, data = scRNA)
[Package PLNmodels version 1.2.0 Index]