2
I’m dealing with time series on R. My Data are Homocedastic, have no autocorrelation, no unitary root in lag=0, trend or seasonality.
I still run into the problem of this particular error:
VAR_S <- summary(VAR(Base_Dados,p = 1, type = "both"))
Error in Solve.default(Sigma) :
system is computationally singular: reciprocal condition number =
5.67068e-37VAR<- (VAR(Base_Dados, p = 1, type = "both" ) )
At first I thought it was collinearity, but the correlation of the data does not exceed 0,25.
You may be working with something really independent, so the autoregressive vector tends to a null vector.
– Márcio Mocellin
I think I understand, is it possible to see this with determinants of the matrix maybe?
– Felipe Silva