summary.nonlin {PNAR} | R Documentation |
S3 methods for extracting the results of the non-linear hypothesis test
Description
S3 methods for extracting the results of the non-linear hypothesis test.
Usage
## S3 method for class 'nonlin'
summary(object, ...)
## S3 method for class 'summary.nonlin'
print(x, ...)
## S3 method for class 'nonlin'
print(x, ...)
Arguments
object |
An object containing the results of the function |
x |
An object containing the results of the function |
... |
Extra arguments the user can pass. |
Details
The functions print the output of the non-linear hypothesis test.
Value
The functions print the results of the function score_test_nonlinpq_h0
.
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. and K. Fokianos (2022b). Testing linearity for network autoregressive models. https://arxiv.org/abs/2202.03852
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
Examples
data(crime)
data(crime_W)
mod1 <- lin_estimnarpq(crime, crime_W, p = 2)
ca <- mod1$coefs[, 1]
a <- score_test_nonlinpq_h0(ca, crime, crime_W, p = 2, d = 1)
print(a)
summary(a)