@xyo-network/diviner-forecasting-method-arima 5.3.25 → 5.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +166 -10
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,23 +1,179 @@
|
|
|
1
|
+
[![logo][]](https://xyo.network)
|
|
2
|
+
|
|
1
3
|
# @xyo-network/diviner-forecasting-method-arima
|
|
2
4
|
|
|
3
|
-
[![
|
|
5
|
+
[![npm][npm-badge]][npm-link]
|
|
6
|
+
[![license][license-badge]][license-link]
|
|
7
|
+
|
|
8
|
+
> XYO Archivist
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
Using npm:
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npm install {{name}}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Using yarn:
|
|
4
19
|
|
|
5
|
-
|
|
20
|
+
```sh
|
|
21
|
+
yarn add {{name}}
|
|
22
|
+
```
|
|
6
23
|
|
|
7
|
-
|
|
24
|
+
Using pnpm:
|
|
8
25
|
|
|
9
|
-
|
|
26
|
+
```sh
|
|
27
|
+
pnpm add {{name}}
|
|
28
|
+
```
|
|
10
29
|
|
|
11
|
-
|
|
30
|
+
Using bun:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
bun add {{name}}
|
|
34
|
+
```
|
|
12
35
|
|
|
13
|
-
Part of [sdk-xyo-client-js](https://www.npmjs.com/package/@xyo-network/sdk-xyo-client-js)
|
|
14
36
|
|
|
15
37
|
## License
|
|
16
38
|
|
|
17
|
-
|
|
39
|
+
See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
|
|
40
|
+
|
|
41
|
+
## Reference
|
|
42
|
+
|
|
43
|
+
### packages
|
|
44
|
+
|
|
45
|
+
### modules
|
|
46
|
+
|
|
47
|
+
### packages
|
|
48
|
+
|
|
49
|
+
### diviner
|
|
50
|
+
|
|
51
|
+
### packages
|
|
52
|
+
|
|
53
|
+
### forecasting
|
|
54
|
+
|
|
55
|
+
### packages
|
|
56
|
+
|
|
57
|
+
### arima
|
|
58
|
+
|
|
59
|
+
### .temp-typedoc
|
|
60
|
+
|
|
61
|
+
### functions
|
|
62
|
+
|
|
63
|
+
### <a id="configurableArima"></a>configurableArima
|
|
64
|
+
|
|
65
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
```ts
|
|
70
|
+
function configurableArima(opts?, predictionSteps?): ForecastingMethod;
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Parameters
|
|
74
|
+
|
|
75
|
+
### opts?
|
|
76
|
+
|
|
77
|
+
`ARIMAOptions` = `commonOpts`
|
|
78
|
+
|
|
79
|
+
### predictionSteps?
|
|
80
|
+
|
|
81
|
+
`number` = `10`
|
|
82
|
+
|
|
83
|
+
## Returns
|
|
84
|
+
|
|
85
|
+
`ForecastingMethod`
|
|
86
|
+
|
|
87
|
+
### type-aliases
|
|
88
|
+
|
|
89
|
+
### <a id="PredictionPayload"></a>PredictionPayload
|
|
90
|
+
|
|
91
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
92
|
+
|
|
93
|
+
***
|
|
94
|
+
|
|
95
|
+
```ts
|
|
96
|
+
type PredictionPayload = Payload<{
|
|
97
|
+
error?: number;
|
|
98
|
+
value: number;
|
|
99
|
+
}>;
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### variables
|
|
103
|
+
|
|
104
|
+
### <a id="arimaForecastingMethod"></a>arimaForecastingMethod
|
|
105
|
+
|
|
106
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
107
|
+
|
|
108
|
+
***
|
|
109
|
+
|
|
110
|
+
```ts
|
|
111
|
+
const arimaForecastingMethod: ForecastingMethod;
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### <a id="arimaForecastingName"></a>arimaForecastingName
|
|
115
|
+
|
|
116
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
117
|
+
|
|
118
|
+
***
|
|
119
|
+
|
|
120
|
+
```ts
|
|
121
|
+
const arimaForecastingName: "arimaForecasting" = 'arimaForecasting';
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### <a id="arimaOpts"></a>arimaOpts
|
|
125
|
+
|
|
126
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
127
|
+
|
|
128
|
+
***
|
|
129
|
+
|
|
130
|
+
```ts
|
|
131
|
+
const arimaOpts: ARIMAOptions;
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### <a id="commonOpts"></a>commonOpts
|
|
135
|
+
|
|
136
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
137
|
+
|
|
138
|
+
***
|
|
139
|
+
|
|
140
|
+
```ts
|
|
141
|
+
const commonOpts: ARIMAOptions;
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### <a id="seasonalArimaForecastingMethod"></a>seasonalArimaForecastingMethod
|
|
145
|
+
|
|
146
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
147
|
+
|
|
148
|
+
***
|
|
149
|
+
|
|
150
|
+
```ts
|
|
151
|
+
const seasonalArimaForecastingMethod: ForecastingMethod;
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
### <a id="seasonalArimaForecastingName"></a>seasonalArimaForecastingName
|
|
155
|
+
|
|
156
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
157
|
+
|
|
158
|
+
***
|
|
159
|
+
|
|
160
|
+
```ts
|
|
161
|
+
const seasonalArimaForecastingName: "seasonalArimaForecasting" = 'seasonalArimaForecasting';
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
### <a id="seasonalArimaOpts"></a>seasonalArimaOpts
|
|
165
|
+
|
|
166
|
+
[**@xyo-network/diviner-forecasting-method-arima**](#../README)
|
|
167
|
+
|
|
168
|
+
***
|
|
18
169
|
|
|
19
|
-
|
|
170
|
+
```ts
|
|
171
|
+
const seasonalArimaOpts: ARIMAOptions;
|
|
172
|
+
```
|
|
20
173
|
|
|
21
|
-
[Made with 🔥 and ❄️ by XYO](https://xyo.network)
|
|
22
174
|
|
|
23
|
-
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
|
175
|
+
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
|
176
|
+
[npm-badge]: https://img.shields.io/npm/v/@xyo-network/diviner-forecasting-method-arima.svg
|
|
177
|
+
[npm-link]: https://www.npmjs.com/package/@xyo-network/diviner-forecasting-method-arima
|
|
178
|
+
[license-badge]: https://img.shields.io/npm/l/@xyo-network/diviner-forecasting-method-arima.svg
|
|
179
|
+
[license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/diviner-forecasting-method-arima",
|
|
4
|
-
"version": "5.3.
|
|
4
|
+
"version": "5.3.26",
|
|
5
5
|
"description": "XYO Archivist",
|
|
6
6
|
"license": "LGPL-3.0-only",
|
|
7
7
|
"author": "Arie Trouw",
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"types": "./dist/neutral/index.d.ts",
|
|
13
|
+
"import": "./dist/neutral/index.mjs",
|
|
13
14
|
"default": "./dist/neutral/index.mjs"
|
|
14
15
|
},
|
|
15
16
|
"./package.json": "./package.json"
|
|
16
17
|
},
|
|
17
|
-
"module": "dist/neutral/index.mjs",
|
|
18
18
|
"types": "dist/neutral/index.d.ts",
|
|
19
19
|
"files": [
|
|
20
20
|
"dist",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"arima": "~0.2.8",
|
|
28
|
-
"@xyo-network/diviner-forecasting-model": "~5.3.
|
|
29
|
-
"@xyo-network/payload-model": "~5.3.
|
|
28
|
+
"@xyo-network/diviner-forecasting-model": "~5.3.26",
|
|
29
|
+
"@xyo-network/payload-model": "~5.3.26"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@opentelemetry/api": "^1.9.1",
|
|
33
|
-
"@types/node": "^25.5.
|
|
34
|
-
"@xylabs/sdk-js": "^5.0.
|
|
35
|
-
"@xylabs/ts-scripts-common": "~7.
|
|
36
|
-
"@xylabs/ts-scripts-pnpm": "~7.
|
|
37
|
-
"@xylabs/tsconfig": "~7.
|
|
38
|
-
"@xylabs/vitest-extended": "~5.0.
|
|
33
|
+
"@types/node": "^25.5.2",
|
|
34
|
+
"@xylabs/sdk-js": "^5.0.94",
|
|
35
|
+
"@xylabs/ts-scripts-common": "~7.7.5",
|
|
36
|
+
"@xylabs/ts-scripts-pnpm": "~7.7.5",
|
|
37
|
+
"@xylabs/tsconfig": "~7.7.5",
|
|
38
|
+
"@xylabs/vitest-extended": "~5.0.94",
|
|
39
39
|
"acorn": "^8.16.0",
|
|
40
40
|
"arima": "~0.2.8",
|
|
41
41
|
"axios": "^1.14.0",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"vite": "^8.0.3",
|
|
45
45
|
"vitest": "~4.1.2",
|
|
46
46
|
"zod": "^4.3.6",
|
|
47
|
-
"@xyo-network/diviner-forecasting-model": "~5.3.
|
|
48
|
-
"@xyo-network/payload-model": "~5.3.
|
|
47
|
+
"@xyo-network/diviner-forecasting-model": "~5.3.26",
|
|
48
|
+
"@xyo-network/payload-model": "~5.3.26"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@xylabs/sdk-js": "^5",
|