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 |
x |
An object containing the results of the estimation function |
... |
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., Tsagris, M. and Fokianos, K. (2024). Inference for Network Count Time Series with the R Package PNAR. The R Journal, 15/4: 255–269.
See Also
Examples
data(crime)
data(crime_W)
mod1 <- lin_estimnarpq(crime, crime_W, p = 2)
mod1
print(mod1)
summary(mod1)
[Package PNAR version 1.7 Index]