summary.PNAR {PNAR} | R Documentation |
S3 methods for extracting the results of the estimation functions.
## S3 method for class 'PNAR'
summary(object, ...)
## S3 method for class 'summary.PNAR'
print(x, ...)
## S3 method for class 'PNAR'
print(x, ...)
object |
An object containing the results of the estimation function |
x |
An object containing the results of the estimation function |
... |
Extra arguments the user can pass. |
These functions print the output of the estimation functions.
The print.PNAR() function prints the coefficients of the model. The summary.PNAR() function prints the output in the lm() style.
Mirko Armillotta, Michail Tsagris and Konstantinos Fokianos.
Armillotta, M., Tsagris, M. and Fokianos, K. (2024). Inference for Network Count Time Series with the R Package PNAR. The R Journal, 15/4: 255–269.
data(crime)
data(crime_W)
mod1 <- lin_estimnarpq(crime, crime_W, p = 2)
mod1
print(mod1)
summary(mod1)