2
Good night
I am performing the KPSS hypothesis test for time series stationarity, through the following commands.
#Todos os pacotes necessários para o desenvolvimento do curso
library(forecast)
library(ggplot2)
library(urca)
library(lmtest)
library(seasonal)
library(seasonalview)
x<-ur.kpss(AirPassengers)
print(x)
The Airpassengers base is already native to R
after performing the test I can’t just extract the p-value number from the x-object, which makes it impossible for me to scale to a list of many matrices I have
I would like help to extract the value of p-valeu for another object in number form, I thank you already.