arima
arima copied to clipboard
ARIMA, SARIMA, SARIMAX and AutoARIMA models for time series analysis and forecasting in the browser and Node.js
## Bug Report On running node.js server in my Angular 8 application using `yarn start` locally am encountering : > ERROR in ./node_modules/arima/wasm/native.js > Module not found: Error: Can't resolve...
I need to be able to do the following: 1. Train on one computer and upload the model for prediction on a server. 2. Repeatedly apply a model to different...
how to predict continuation after training starting from different values?
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
### Environment Lib version: `[email protected]` Node version: `v14.18.2` OS: Linux and macOS ### Description Hi @zemlyansky, we have been happily using your library without issue for some time to forecast...
I tried to train/fit ARIMA & Auto ARIMA model with sin pattern datasets but it gives an invalid prediction, even in the first data point is invalid/not meaningful at all....
How to reproduce ? `const ARIMA = require('arima') for(let i of Array(50)) { const ts = [81, 123, 175, 174, 130, 134, 150, 211, 240, 222, 159, 219, 109, 128,...
Hi, thanks for the gread library! The following call produces a `console.log` which is not ideal in my case since i love a clean console ;). Call: ``` static forecastTimeseriesNpmArima({ts,...
Hi, thanks for the gread lib! Do u plan to add typescript types? I allready created a minimal `index.d.ts` to satisify my local compiler. But it is by far not...
Following example will exit with an error (crash). This error can't be even handled with try/catch: ```javascript const arima = require('arima'); let pVals = [0, 0, 0, 0, 12, 9.55,...