summary.singleRStaticCountData {singleRcapture} | R Documentation |
Summary statistics for model of singleRStaticCountData class.
Description
A summary
method for singleRStaticCountData
class
Usage
## S3 method for class 'singleRStaticCountData'
summary(
object,
test = c("t", "z"),
resType = "pearson",
correlation = FALSE,
confint = FALSE,
cov,
popSizeEst,
...
)
Arguments
object |
object of singleRStaticCountData class. |
test |
type of test for significance of parameters |
resType |
type of residuals to summarize any value that is allowed in
|
correlation |
logical value indicating whether correlation matrix should
be computed from covariance matrix by default |
confint |
logical value indicating whether confidence intervals for
regression parameters should be constructed. By default |
cov |
covariance matrix corresponding to regression parameters.
It is possible to give |
popSizeEst |
a |
... |
additional optional arguments passed to the following functions:
|
Details
Works
analogically to summary.glm
but includes population size estimation
results. If any additional statistics, such as confidence intervals for
coefficients or coefficient correlation, are specified they will be printed.
Value
An object of summarysingleRStaticCountData
class containing:
-
call
– A call which createdobject
. -
coefficients
– A dataframe with estimated regression coefficients and their summary statistics such as standard error Wald test statistic and p value for Wald test. -
residuals
– A vector of residuals of type specified at call. -
aic
– Akaike's information criterion. -
bic
– Bayesian (Schwarz's) information criterion. -
iter
– Number of iterations taken in fitting regression. -
logL
– Logarithm of likelihood function evaluated at coefficients. -
deviance
– Residual deviance. -
populationSize
– Object with population size estimation results. -
dfResidual
– Residual degrees of freedom. -
sizeObserved
– Size of observed population. -
correlation
– Correlation matrix ifcorrelation
parameter was set toTRUE
-
test
– Type of statistical test performed. -
model
– Family class object specified in call forobject
. -
skew
– If bootstrap sample was saved contains estimate of skewness.
See Also
redoPopEstimation()
stats::summary.glm()