You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1
Warning messages:
1: In max(which(abs(ma) > 1e-08)) :
no non-missing arguments to max; returning -Inf
2: 1 error encountered for arima
[1] argument must be coercible to non-negative integer
How to fix this?
Thanks,
Sevvandi
The text was updated successfully, but these errors were encountered:
Hi,
When I run the code below, I am getting the following error.
vals <- c(3999, 4389, 4779, 5169, 5559, 8639, 6339, 6729, 7119, 7509, 7899, 8289, 8679, 9069, 9459)
data.frame(time=1:length(vals), edges=vals) %>%
tibble::as_tibble() %>%
tsibble::as_tsibble(index=time) %>%
fabletools::model(arima=fable::ARIMA(edges))
Error
A mable: 1 x 1
1
Warning messages:
1: In max(which(abs(ma) > 1e-08)) :
no non-missing arguments to max; returning -Inf
2: 1 error encountered for arima
[1] argument must be coercible to non-negative integer
How to fix this?
Thanks,
Sevvandi
The text was updated successfully, but these errors were encountered: