summary.PNAR {PNAR}R Documentation

S3 methods for extracting the results of the estimation functions

Description

S3 methods for extracting the results of the estimation functions.

Usage

## S3 method for class 'PNAR'
summary(object, ...)
## S3 method for class 'summary.PNAR'
print(x, ...)
## S3 method for class 'PNAR'
print(x, ...)

Arguments

object

An object containing the results of the estimation function lin_estimnarpq or log_lin_estimnarpq.

x

An object containing the results of the estimation function lin_estimnarpq or log_lin_estimnarpq.

...

Extra arguments the user can pass.

Details

These functions print the output of the estimation functions.

Value

The print.PNAR() function prints the coefficients of the model. The summary.PNAR() function prints the output in the lm() style.

Author(s)

Mirko Armillotta, Michail Tsagris and Konstantinos Fokianos.

References

Armillotta, M. and K. Fokianos (2022a). Poisson network autoregression. https://arxiv.org/abs/2104.06296

Armillotta, M., Tsagris, M. and Fokianos, K. (2022c). The R-package PNAR for modelling count network time series. https://arxiv.org/abs/2211.02582

See Also

log_lin_estimnarpq

Examples

data(crime)
data(crime_W)
mod1 <- lin_estimnarpq(crime, crime_W, p = 2)
mod1
print(mod1)
summary(mod1)

[Package PNAR version 1.6 Index]