I am using the KoutParametersEstim()
function from the StableEstim
package to estimate distributional parameters for the time series RRP
shown in the table called SA_PRICE
. So when I run the following code:
KoutParametersEstim(SA_PRICE$RRP)$Estim$par
I am receiving this error:
Error in lm.fit(A %*% X, A %*% Y, method = method, ...) :
NA/NaN/Inf in 'y'
This is when I apply the function to the full data set. Strangely, the function works well on portions of the data, e.g. the first (or last) 1000 observations. Not sure what the issue is. I do not believe that I have any `NA/NaN/Inf' in my data. It seems something is happening with the computation of the modulus ...