@univerjs/sheets-formula-ui 0.3.0-nightly.202410101606

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.
Files changed (156) hide show
  1. package/README.md +39 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/es/index.js +1 -0
  4. package/lib/index.css +1 -0
  5. package/lib/locale/en-US.json +10987 -0
  6. package/lib/locale/ru-RU.json +10938 -0
  7. package/lib/locale/vi-VN.json +9511 -0
  8. package/lib/locale/zh-CN.json +10987 -0
  9. package/lib/locale/zh-TW.json +10987 -0
  10. package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -0
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +13 -0
  12. package/lib/types/commands/operations/__tests__/insert-function.operation.spec.d.ts +16 -0
  13. package/lib/types/commands/operations/editor-formula.operation.d.ts +11 -0
  14. package/lib/types/commands/operations/help-function.operation.d.ts +2 -0
  15. package/lib/types/commands/operations/insert-function.operation.d.ts +19 -0
  16. package/lib/types/commands/operations/more-functions.operation.d.ts +2 -0
  17. package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -0
  18. package/lib/types/commands/operations/search-function.operation.d.ts +2 -0
  19. package/lib/types/common/plugin-name.d.ts +16 -0
  20. package/lib/types/common/prompt.d.ts +16 -0
  21. package/lib/types/common/selection.d.ts +4 -0
  22. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +7 -0
  23. package/lib/types/controllers/__tests__/formula-auto-fill.controller.spec.d.ts +16 -0
  24. package/lib/types/controllers/__tests__/formula-clipboard.controller.spec.d.ts +16 -0
  25. package/lib/types/controllers/__tests__/update-formula.controller.spec.d.ts +16 -0
  26. package/lib/types/controllers/config.schema.d.ts +15 -0
  27. package/lib/types/controllers/formula-alert-render.controller.d.ts +15 -0
  28. package/lib/types/controllers/formula-auto-fill.controller.d.ts +10 -0
  29. package/lib/types/controllers/formula-clipboard.controller.d.ts +25 -0
  30. package/lib/types/controllers/formula-editor-show.controller.d.ts +28 -0
  31. package/lib/types/controllers/formula-process.controller.d.ts +15 -0
  32. package/lib/types/controllers/formula-render.controller.d.ts +6 -0
  33. package/lib/types/controllers/formula-ui.controller.d.ts +19 -0
  34. package/lib/types/controllers/menu.d.ts +5 -0
  35. package/lib/types/controllers/menu.schema.d.ts +2 -0
  36. package/lib/types/controllers/prompt.controller.d.ts +170 -0
  37. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +9 -0
  38. package/lib/types/controllers/utils/__tests__/offset-formula-data.spec.d.ts +16 -0
  39. package/lib/types/controllers/utils/__tests__/ref-range-formula.spec.d.ts +16 -0
  40. package/lib/types/controllers/utils/__tests__/utils.spec.d.ts +16 -0
  41. package/lib/types/controllers/utils/offset-formula-data.d.ts +15 -0
  42. package/lib/types/controllers/utils/ref-range-formula.d.ts +71 -0
  43. package/lib/types/controllers/utils/utils.d.ts +15 -0
  44. package/lib/types/index.d.ts +25 -0
  45. package/lib/types/locale/en-US.d.ts +9983 -0
  46. package/lib/types/locale/function-list/array/en-US.d.ts +17 -0
  47. package/lib/types/locale/function-list/array/ja-JP.d.ts +17 -0
  48. package/lib/types/locale/function-list/array/ru-RU.d.ts +2 -0
  49. package/lib/types/locale/function-list/array/vi-VN.d.ts +17 -0
  50. package/lib/types/locale/function-list/array/zh-CN.d.ts +17 -0
  51. package/lib/types/locale/function-list/array/zh-TW.d.ts +17 -0
  52. package/lib/types/locale/function-list/compatibility/en-US.d.ts +762 -0
  53. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +762 -0
  54. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +2 -0
  55. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +762 -0
  56. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +762 -0
  57. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +762 -0
  58. package/lib/types/locale/function-list/cube/en-US.d.ts +144 -0
  59. package/lib/types/locale/function-list/cube/ja-JP.d.ts +144 -0
  60. package/lib/types/locale/function-list/cube/ru-RU.d.ts +144 -0
  61. package/lib/types/locale/function-list/cube/vi-VN.d.ts +144 -0
  62. package/lib/types/locale/function-list/cube/zh-CN.d.ts +144 -0
  63. package/lib/types/locale/function-list/cube/zh-TW.d.ts +144 -0
  64. package/lib/types/locale/function-list/database/en-US.d.ts +234 -0
  65. package/lib/types/locale/function-list/database/ja-JP.d.ts +234 -0
  66. package/lib/types/locale/function-list/database/ru-RU.d.ts +234 -0
  67. package/lib/types/locale/function-list/database/vi-VN.d.ts +234 -0
  68. package/lib/types/locale/function-list/database/zh-CN.d.ts +234 -0
  69. package/lib/types/locale/function-list/database/zh-TW.d.ts +234 -0
  70. package/lib/types/locale/function-list/date/en-US.d.ts +458 -0
  71. package/lib/types/locale/function-list/date/ja-JP.d.ts +458 -0
  72. package/lib/types/locale/function-list/date/ru-RU.d.ts +2 -0
  73. package/lib/types/locale/function-list/date/vi-VN.d.ts +458 -0
  74. package/lib/types/locale/function-list/date/zh-CN.d.ts +458 -0
  75. package/lib/types/locale/function-list/date/zh-TW.d.ts +458 -0
  76. package/lib/types/locale/function-list/engineering/en-US.d.ts +894 -0
  77. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +894 -0
  78. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +2 -0
  79. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +894 -0
  80. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +894 -0
  81. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +894 -0
  82. package/lib/types/locale/function-list/financial/en-US.d.ts +1608 -0
  83. package/lib/types/locale/function-list/financial/ja-JP.d.ts +1608 -0
  84. package/lib/types/locale/function-list/financial/ru-RU.d.ts +2 -0
  85. package/lib/types/locale/function-list/financial/vi-VN.d.ts +1608 -0
  86. package/lib/types/locale/function-list/financial/zh-CN.d.ts +1608 -0
  87. package/lib/types/locale/function-list/financial/zh-TW.d.ts +1608 -0
  88. package/lib/types/locale/function-list/information/en-US.d.ts +327 -0
  89. package/lib/types/locale/function-list/information/ja-JP.d.ts +327 -0
  90. package/lib/types/locale/function-list/information/ru-RU.d.ts +2 -0
  91. package/lib/types/locale/function-list/information/vi-VN.d.ts +255 -0
  92. package/lib/types/locale/function-list/information/zh-CN.d.ts +327 -0
  93. package/lib/types/locale/function-list/information/zh-TW.d.ts +327 -0
  94. package/lib/types/locale/function-list/logical/en-US.d.ts +390 -0
  95. package/lib/types/locale/function-list/logical/ja-JP.d.ts +390 -0
  96. package/lib/types/locale/function-list/logical/ru-RU.d.ts +2 -0
  97. package/lib/types/locale/function-list/logical/vi-VN.d.ts +390 -0
  98. package/lib/types/locale/function-list/logical/zh-CN.d.ts +390 -0
  99. package/lib/types/locale/function-list/logical/zh-TW.d.ts +390 -0
  100. package/lib/types/locale/function-list/lookup/en-US.d.ts +812 -0
  101. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +812 -0
  102. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +2 -0
  103. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +722 -0
  104. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +812 -0
  105. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +812 -0
  106. package/lib/types/locale/function-list/math/en-US.d.ts +1388 -0
  107. package/lib/types/locale/function-list/math/ja-JP.d.ts +1388 -0
  108. package/lib/types/locale/function-list/math/ru-RU.d.ts +2 -0
  109. package/lib/types/locale/function-list/math/vi-VN.d.ts +1298 -0
  110. package/lib/types/locale/function-list/math/zh-CN.d.ts +1388 -0
  111. package/lib/types/locale/function-list/math/zh-TW.d.ts +1388 -0
  112. package/lib/types/locale/function-list/statistical/en-US.d.ts +2160 -0
  113. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2160 -0
  114. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +2 -0
  115. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +1188 -0
  116. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +2160 -0
  117. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +2160 -0
  118. package/lib/types/locale/function-list/text/en-US.d.ts +904 -0
  119. package/lib/types/locale/function-list/text/ja-JP.d.ts +905 -0
  120. package/lib/types/locale/function-list/text/ru-RU.d.ts +856 -0
  121. package/lib/types/locale/function-list/text/vi-VN.d.ts +784 -0
  122. package/lib/types/locale/function-list/text/zh-CN.d.ts +904 -0
  123. package/lib/types/locale/function-list/text/zh-TW.d.ts +904 -0
  124. package/lib/types/locale/function-list/univer/en-US.d.ts +17 -0
  125. package/lib/types/locale/function-list/univer/ja-JP.d.ts +17 -0
  126. package/lib/types/locale/function-list/univer/ru-RU.d.ts +17 -0
  127. package/lib/types/locale/function-list/univer/vi-VN.d.ts +17 -0
  128. package/lib/types/locale/function-list/univer/zh-CN.d.ts +17 -0
  129. package/lib/types/locale/function-list/univer/zh-TW.d.ts +17 -0
  130. package/lib/types/locale/function-list/web/en-US.d.ts +72 -0
  131. package/lib/types/locale/function-list/web/ja-JP.d.ts +72 -0
  132. package/lib/types/locale/function-list/web/ru-RU.d.ts +72 -0
  133. package/lib/types/locale/function-list/web/vi-VN.d.ts +2 -0
  134. package/lib/types/locale/function-list/web/zh-CN.d.ts +72 -0
  135. package/lib/types/locale/function-list/web/zh-TW.d.ts +72 -0
  136. package/lib/types/locale/ru-RU.d.ts +9934 -0
  137. package/lib/types/locale/vi-VN.d.ts +8657 -0
  138. package/lib/types/locale/zh-CN.d.ts +9983 -0
  139. package/lib/types/locale/zh-TW.d.ts +9983 -0
  140. package/lib/types/services/formula-common.d.ts +18 -0
  141. package/lib/types/services/prompt.service.d.ts +160 -0
  142. package/lib/types/services/render-services/ref-selections.render-service.d.ts +42 -0
  143. package/lib/types/services/utils.d.ts +8 -0
  144. package/lib/types/sheets-formula-ui.plugin.d.ts +19 -0
  145. package/lib/types/views/FormulaPromptContainer.d.ts +2 -0
  146. package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -0
  147. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +22 -0
  148. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +8 -0
  149. package/lib/types/views/more-functions/input-params/InputParams.d.ts +7 -0
  150. package/lib/types/views/more-functions/interface.d.ts +16 -0
  151. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +6 -0
  152. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -0
  153. package/lib/types/views/prompt/resize-scroll-observer.d.ts +18 -0
  154. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +2 -0
  155. package/lib/umd/index.js +1 -0
  156. package/package.json +113 -0
@@ -0,0 +1,2160 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ declare const _default: {
17
+ AVEDEV: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ number1: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ number2: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ };
34
+ };
35
+ AVERAGE: {
36
+ description: string;
37
+ abstract: string;
38
+ links: {
39
+ title: string;
40
+ url: string;
41
+ }[];
42
+ functionParameter: {
43
+ number1: {
44
+ name: string;
45
+ detail: string;
46
+ };
47
+ number2: {
48
+ name: string;
49
+ detail: string;
50
+ };
51
+ };
52
+ };
53
+ AVERAGEA: {
54
+ description: string;
55
+ abstract: string;
56
+ links: {
57
+ title: string;
58
+ url: string;
59
+ }[];
60
+ functionParameter: {
61
+ value1: {
62
+ name: string;
63
+ detail: string;
64
+ };
65
+ value2: {
66
+ name: string;
67
+ detail: string;
68
+ };
69
+ };
70
+ };
71
+ AVERAGEIF: {
72
+ description: string;
73
+ abstract: string;
74
+ links: {
75
+ title: string;
76
+ url: string;
77
+ }[];
78
+ functionParameter: {
79
+ range: {
80
+ name: string;
81
+ detail: string;
82
+ };
83
+ criteria: {
84
+ name: string;
85
+ detail: string;
86
+ };
87
+ averageRange: {
88
+ name: string;
89
+ detail: string;
90
+ };
91
+ };
92
+ };
93
+ AVERAGEIFS: {
94
+ description: string;
95
+ abstract: string;
96
+ links: {
97
+ title: string;
98
+ url: string;
99
+ }[];
100
+ functionParameter: {
101
+ averageRange: {
102
+ name: string;
103
+ detail: string;
104
+ };
105
+ criteriaRange1: {
106
+ name: string;
107
+ detail: string;
108
+ };
109
+ criteria1: {
110
+ name: string;
111
+ detail: string;
112
+ };
113
+ criteriaRange2: {
114
+ name: string;
115
+ detail: string;
116
+ };
117
+ criteria2: {
118
+ name: string;
119
+ detail: string;
120
+ };
121
+ };
122
+ };
123
+ BETA_DIST: {
124
+ description: string;
125
+ abstract: string;
126
+ links: {
127
+ title: string;
128
+ url: string;
129
+ }[];
130
+ functionParameter: {
131
+ x: {
132
+ name: string;
133
+ detail: string;
134
+ };
135
+ alpha: {
136
+ name: string;
137
+ detail: string;
138
+ };
139
+ beta: {
140
+ name: string;
141
+ detail: string;
142
+ };
143
+ cumulative: {
144
+ name: string;
145
+ detail: string;
146
+ };
147
+ A: {
148
+ name: string;
149
+ detail: string;
150
+ };
151
+ B: {
152
+ name: string;
153
+ detail: string;
154
+ };
155
+ };
156
+ };
157
+ BETA_INV: {
158
+ description: string;
159
+ abstract: string;
160
+ links: {
161
+ title: string;
162
+ url: string;
163
+ }[];
164
+ functionParameter: {
165
+ probability: {
166
+ name: string;
167
+ detail: string;
168
+ };
169
+ alpha: {
170
+ name: string;
171
+ detail: string;
172
+ };
173
+ beta: {
174
+ name: string;
175
+ detail: string;
176
+ };
177
+ A: {
178
+ name: string;
179
+ detail: string;
180
+ };
181
+ B: {
182
+ name: string;
183
+ detail: string;
184
+ };
185
+ };
186
+ };
187
+ BINOM_DIST: {
188
+ description: string;
189
+ abstract: string;
190
+ links: {
191
+ title: string;
192
+ url: string;
193
+ }[];
194
+ functionParameter: {
195
+ numberS: {
196
+ name: string;
197
+ detail: string;
198
+ };
199
+ trials: {
200
+ name: string;
201
+ detail: string;
202
+ };
203
+ probabilityS: {
204
+ name: string;
205
+ detail: string;
206
+ };
207
+ cumulative: {
208
+ name: string;
209
+ detail: string;
210
+ };
211
+ };
212
+ };
213
+ BINOM_DIST_RANGE: {
214
+ description: string;
215
+ abstract: string;
216
+ links: {
217
+ title: string;
218
+ url: string;
219
+ }[];
220
+ functionParameter: {
221
+ trials: {
222
+ name: string;
223
+ detail: string;
224
+ };
225
+ probabilityS: {
226
+ name: string;
227
+ detail: string;
228
+ };
229
+ numberS: {
230
+ name: string;
231
+ detail: string;
232
+ };
233
+ numberS2: {
234
+ name: string;
235
+ detail: string;
236
+ };
237
+ };
238
+ };
239
+ BINOM_INV: {
240
+ description: string;
241
+ abstract: string;
242
+ links: {
243
+ title: string;
244
+ url: string;
245
+ }[];
246
+ functionParameter: {
247
+ trials: {
248
+ name: string;
249
+ detail: string;
250
+ };
251
+ probabilityS: {
252
+ name: string;
253
+ detail: string;
254
+ };
255
+ alpha: {
256
+ name: string;
257
+ detail: string;
258
+ };
259
+ };
260
+ };
261
+ CHISQ_DIST: {
262
+ description: string;
263
+ abstract: string;
264
+ links: {
265
+ title: string;
266
+ url: string;
267
+ }[];
268
+ functionParameter: {
269
+ x: {
270
+ name: string;
271
+ detail: string;
272
+ };
273
+ degFreedom: {
274
+ name: string;
275
+ detail: string;
276
+ };
277
+ cumulative: {
278
+ name: string;
279
+ detail: string;
280
+ };
281
+ };
282
+ };
283
+ CHISQ_DIST_RT: {
284
+ description: string;
285
+ abstract: string;
286
+ links: {
287
+ title: string;
288
+ url: string;
289
+ }[];
290
+ functionParameter: {
291
+ x: {
292
+ name: string;
293
+ detail: string;
294
+ };
295
+ degFreedom: {
296
+ name: string;
297
+ detail: string;
298
+ };
299
+ };
300
+ };
301
+ CHISQ_INV: {
302
+ description: string;
303
+ abstract: string;
304
+ links: {
305
+ title: string;
306
+ url: string;
307
+ }[];
308
+ functionParameter: {
309
+ probability: {
310
+ name: string;
311
+ detail: string;
312
+ };
313
+ degFreedom: {
314
+ name: string;
315
+ detail: string;
316
+ };
317
+ };
318
+ };
319
+ CHISQ_INV_RT: {
320
+ description: string;
321
+ abstract: string;
322
+ links: {
323
+ title: string;
324
+ url: string;
325
+ }[];
326
+ functionParameter: {
327
+ probability: {
328
+ name: string;
329
+ detail: string;
330
+ };
331
+ degFreedom: {
332
+ name: string;
333
+ detail: string;
334
+ };
335
+ };
336
+ };
337
+ CHISQ_TEST: {
338
+ description: string;
339
+ abstract: string;
340
+ links: {
341
+ title: string;
342
+ url: string;
343
+ }[];
344
+ functionParameter: {
345
+ actualRange: {
346
+ name: string;
347
+ detail: string;
348
+ };
349
+ expectedRange: {
350
+ name: string;
351
+ detail: string;
352
+ };
353
+ };
354
+ };
355
+ CONFIDENCE_NORM: {
356
+ description: string;
357
+ abstract: string;
358
+ links: {
359
+ title: string;
360
+ url: string;
361
+ }[];
362
+ functionParameter: {
363
+ alpha: {
364
+ name: string;
365
+ detail: string;
366
+ };
367
+ standardDev: {
368
+ name: string;
369
+ detail: string;
370
+ };
371
+ size: {
372
+ name: string;
373
+ detail: string;
374
+ };
375
+ };
376
+ };
377
+ CONFIDENCE_T: {
378
+ description: string;
379
+ abstract: string;
380
+ links: {
381
+ title: string;
382
+ url: string;
383
+ }[];
384
+ functionParameter: {
385
+ alpha: {
386
+ name: string;
387
+ detail: string;
388
+ };
389
+ standardDev: {
390
+ name: string;
391
+ detail: string;
392
+ };
393
+ size: {
394
+ name: string;
395
+ detail: string;
396
+ };
397
+ };
398
+ };
399
+ CORREL: {
400
+ description: string;
401
+ abstract: string;
402
+ links: {
403
+ title: string;
404
+ url: string;
405
+ }[];
406
+ functionParameter: {
407
+ array1: {
408
+ name: string;
409
+ detail: string;
410
+ };
411
+ array2: {
412
+ name: string;
413
+ detail: string;
414
+ };
415
+ };
416
+ };
417
+ COUNT: {
418
+ description: string;
419
+ abstract: string;
420
+ links: {
421
+ title: string;
422
+ url: string;
423
+ }[];
424
+ functionParameter: {
425
+ value1: {
426
+ name: string;
427
+ detail: string;
428
+ };
429
+ value2: {
430
+ name: string;
431
+ detail: string;
432
+ };
433
+ };
434
+ };
435
+ COUNTA: {
436
+ description: string;
437
+ abstract: string;
438
+ links: {
439
+ title: string;
440
+ url: string;
441
+ }[];
442
+ functionParameter: {
443
+ number1: {
444
+ name: string;
445
+ detail: string;
446
+ };
447
+ number2: {
448
+ name: string;
449
+ detail: string;
450
+ };
451
+ };
452
+ };
453
+ COUNTBLANK: {
454
+ description: string;
455
+ abstract: string;
456
+ links: {
457
+ title: string;
458
+ url: string;
459
+ }[];
460
+ functionParameter: {
461
+ range: {
462
+ name: string;
463
+ detail: string;
464
+ };
465
+ };
466
+ };
467
+ COUNTIF: {
468
+ description: string;
469
+ abstract: string;
470
+ links: {
471
+ title: string;
472
+ url: string;
473
+ }[];
474
+ functionParameter: {
475
+ range: {
476
+ name: string;
477
+ detail: string;
478
+ };
479
+ criteria: {
480
+ name: string;
481
+ detail: string;
482
+ };
483
+ };
484
+ };
485
+ COUNTIFS: {
486
+ description: string;
487
+ abstract: string;
488
+ links: {
489
+ title: string;
490
+ url: string;
491
+ }[];
492
+ functionParameter: {
493
+ criteriaRange1: {
494
+ name: string;
495
+ detail: string;
496
+ };
497
+ criteria1: {
498
+ name: string;
499
+ detail: string;
500
+ };
501
+ criteriaRange2: {
502
+ name: string;
503
+ detail: string;
504
+ };
505
+ criteria2: {
506
+ name: string;
507
+ detail: string;
508
+ };
509
+ };
510
+ };
511
+ COVARIANCE_P: {
512
+ description: string;
513
+ abstract: string;
514
+ links: {
515
+ title: string;
516
+ url: string;
517
+ }[];
518
+ functionParameter: {
519
+ array1: {
520
+ name: string;
521
+ detail: string;
522
+ };
523
+ array2: {
524
+ name: string;
525
+ detail: string;
526
+ };
527
+ };
528
+ };
529
+ COVARIANCE_S: {
530
+ description: string;
531
+ abstract: string;
532
+ links: {
533
+ title: string;
534
+ url: string;
535
+ }[];
536
+ functionParameter: {
537
+ array1: {
538
+ name: string;
539
+ detail: string;
540
+ };
541
+ array2: {
542
+ name: string;
543
+ detail: string;
544
+ };
545
+ };
546
+ };
547
+ DEVSQ: {
548
+ description: string;
549
+ abstract: string;
550
+ links: {
551
+ title: string;
552
+ url: string;
553
+ }[];
554
+ functionParameter: {
555
+ number1: {
556
+ name: string;
557
+ detail: string;
558
+ };
559
+ number2: {
560
+ name: string;
561
+ detail: string;
562
+ };
563
+ };
564
+ };
565
+ EXPON_DIST: {
566
+ description: string;
567
+ abstract: string;
568
+ links: {
569
+ title: string;
570
+ url: string;
571
+ }[];
572
+ functionParameter: {
573
+ x: {
574
+ name: string;
575
+ detail: string;
576
+ };
577
+ lambda: {
578
+ name: string;
579
+ detail: string;
580
+ };
581
+ cumulative: {
582
+ name: string;
583
+ detail: string;
584
+ };
585
+ };
586
+ };
587
+ F_DIST: {
588
+ description: string;
589
+ abstract: string;
590
+ links: {
591
+ title: string;
592
+ url: string;
593
+ }[];
594
+ functionParameter: {
595
+ x: {
596
+ name: string;
597
+ detail: string;
598
+ };
599
+ degFreedom1: {
600
+ name: string;
601
+ detail: string;
602
+ };
603
+ degFreedom2: {
604
+ name: string;
605
+ detail: string;
606
+ };
607
+ cumulative: {
608
+ name: string;
609
+ detail: string;
610
+ };
611
+ };
612
+ };
613
+ F_DIST_RT: {
614
+ description: string;
615
+ abstract: string;
616
+ links: {
617
+ title: string;
618
+ url: string;
619
+ }[];
620
+ functionParameter: {
621
+ x: {
622
+ name: string;
623
+ detail: string;
624
+ };
625
+ degFreedom1: {
626
+ name: string;
627
+ detail: string;
628
+ };
629
+ degFreedom2: {
630
+ name: string;
631
+ detail: string;
632
+ };
633
+ };
634
+ };
635
+ F_INV: {
636
+ description: string;
637
+ abstract: string;
638
+ links: {
639
+ title: string;
640
+ url: string;
641
+ }[];
642
+ functionParameter: {
643
+ probability: {
644
+ name: string;
645
+ detail: string;
646
+ };
647
+ degFreedom1: {
648
+ name: string;
649
+ detail: string;
650
+ };
651
+ degFreedom2: {
652
+ name: string;
653
+ detail: string;
654
+ };
655
+ };
656
+ };
657
+ F_INV_RT: {
658
+ description: string;
659
+ abstract: string;
660
+ links: {
661
+ title: string;
662
+ url: string;
663
+ }[];
664
+ functionParameter: {
665
+ probability: {
666
+ name: string;
667
+ detail: string;
668
+ };
669
+ degFreedom1: {
670
+ name: string;
671
+ detail: string;
672
+ };
673
+ degFreedom2: {
674
+ name: string;
675
+ detail: string;
676
+ };
677
+ };
678
+ };
679
+ F_TEST: {
680
+ description: string;
681
+ abstract: string;
682
+ links: {
683
+ title: string;
684
+ url: string;
685
+ }[];
686
+ functionParameter: {
687
+ array1: {
688
+ name: string;
689
+ detail: string;
690
+ };
691
+ array2: {
692
+ name: string;
693
+ detail: string;
694
+ };
695
+ };
696
+ };
697
+ FISHER: {
698
+ description: string;
699
+ abstract: string;
700
+ links: {
701
+ title: string;
702
+ url: string;
703
+ }[];
704
+ functionParameter: {
705
+ x: {
706
+ name: string;
707
+ detail: string;
708
+ };
709
+ };
710
+ };
711
+ FISHERINV: {
712
+ description: string;
713
+ abstract: string;
714
+ links: {
715
+ title: string;
716
+ url: string;
717
+ }[];
718
+ functionParameter: {
719
+ y: {
720
+ name: string;
721
+ detail: string;
722
+ };
723
+ };
724
+ };
725
+ FORECAST: {
726
+ description: string;
727
+ abstract: string;
728
+ links: {
729
+ title: string;
730
+ url: string;
731
+ }[];
732
+ functionParameter: {
733
+ x: {
734
+ name: string;
735
+ detail: string;
736
+ };
737
+ knownYs: {
738
+ name: string;
739
+ detail: string;
740
+ };
741
+ knownXs: {
742
+ name: string;
743
+ detail: string;
744
+ };
745
+ };
746
+ };
747
+ FORECAST_ETS: {
748
+ description: string;
749
+ abstract: string;
750
+ links: {
751
+ title: string;
752
+ url: string;
753
+ }[];
754
+ functionParameter: {
755
+ number1: {
756
+ name: string;
757
+ detail: string;
758
+ };
759
+ number2: {
760
+ name: string;
761
+ detail: string;
762
+ };
763
+ };
764
+ };
765
+ FORECAST_ETS_CONFINT: {
766
+ description: string;
767
+ abstract: string;
768
+ links: {
769
+ title: string;
770
+ url: string;
771
+ }[];
772
+ functionParameter: {
773
+ number1: {
774
+ name: string;
775
+ detail: string;
776
+ };
777
+ number2: {
778
+ name: string;
779
+ detail: string;
780
+ };
781
+ };
782
+ };
783
+ FORECAST_ETS_SEASONALITY: {
784
+ description: string;
785
+ abstract: string;
786
+ links: {
787
+ title: string;
788
+ url: string;
789
+ }[];
790
+ functionParameter: {
791
+ number1: {
792
+ name: string;
793
+ detail: string;
794
+ };
795
+ number2: {
796
+ name: string;
797
+ detail: string;
798
+ };
799
+ };
800
+ };
801
+ FORECAST_ETS_STAT: {
802
+ description: string;
803
+ abstract: string;
804
+ links: {
805
+ title: string;
806
+ url: string;
807
+ }[];
808
+ functionParameter: {
809
+ number1: {
810
+ name: string;
811
+ detail: string;
812
+ };
813
+ number2: {
814
+ name: string;
815
+ detail: string;
816
+ };
817
+ };
818
+ };
819
+ FORECAST_LINEAR: {
820
+ description: string;
821
+ abstract: string;
822
+ links: {
823
+ title: string;
824
+ url: string;
825
+ }[];
826
+ functionParameter: {
827
+ x: {
828
+ name: string;
829
+ detail: string;
830
+ };
831
+ knownYs: {
832
+ name: string;
833
+ detail: string;
834
+ };
835
+ knownXs: {
836
+ name: string;
837
+ detail: string;
838
+ };
839
+ };
840
+ };
841
+ FREQUENCY: {
842
+ description: string;
843
+ abstract: string;
844
+ links: {
845
+ title: string;
846
+ url: string;
847
+ }[];
848
+ functionParameter: {
849
+ number1: {
850
+ name: string;
851
+ detail: string;
852
+ };
853
+ number2: {
854
+ name: string;
855
+ detail: string;
856
+ };
857
+ };
858
+ };
859
+ GAMMA: {
860
+ description: string;
861
+ abstract: string;
862
+ links: {
863
+ title: string;
864
+ url: string;
865
+ }[];
866
+ functionParameter: {
867
+ number1: {
868
+ name: string;
869
+ detail: string;
870
+ };
871
+ number2: {
872
+ name: string;
873
+ detail: string;
874
+ };
875
+ };
876
+ };
877
+ GAMMA_DIST: {
878
+ description: string;
879
+ abstract: string;
880
+ links: {
881
+ title: string;
882
+ url: string;
883
+ }[];
884
+ functionParameter: {
885
+ number1: {
886
+ name: string;
887
+ detail: string;
888
+ };
889
+ number2: {
890
+ name: string;
891
+ detail: string;
892
+ };
893
+ };
894
+ };
895
+ GAMMA_INV: {
896
+ description: string;
897
+ abstract: string;
898
+ links: {
899
+ title: string;
900
+ url: string;
901
+ }[];
902
+ functionParameter: {
903
+ number1: {
904
+ name: string;
905
+ detail: string;
906
+ };
907
+ number2: {
908
+ name: string;
909
+ detail: string;
910
+ };
911
+ };
912
+ };
913
+ GAMMALN: {
914
+ description: string;
915
+ abstract: string;
916
+ links: {
917
+ title: string;
918
+ url: string;
919
+ }[];
920
+ functionParameter: {
921
+ number1: {
922
+ name: string;
923
+ detail: string;
924
+ };
925
+ number2: {
926
+ name: string;
927
+ detail: string;
928
+ };
929
+ };
930
+ };
931
+ GAMMALN_PRECISE: {
932
+ description: string;
933
+ abstract: string;
934
+ links: {
935
+ title: string;
936
+ url: string;
937
+ }[];
938
+ functionParameter: {
939
+ number1: {
940
+ name: string;
941
+ detail: string;
942
+ };
943
+ number2: {
944
+ name: string;
945
+ detail: string;
946
+ };
947
+ };
948
+ };
949
+ GAUSS: {
950
+ description: string;
951
+ abstract: string;
952
+ links: {
953
+ title: string;
954
+ url: string;
955
+ }[];
956
+ functionParameter: {
957
+ number1: {
958
+ name: string;
959
+ detail: string;
960
+ };
961
+ number2: {
962
+ name: string;
963
+ detail: string;
964
+ };
965
+ };
966
+ };
967
+ GEOMEAN: {
968
+ description: string;
969
+ abstract: string;
970
+ links: {
971
+ title: string;
972
+ url: string;
973
+ }[];
974
+ functionParameter: {
975
+ number1: {
976
+ name: string;
977
+ detail: string;
978
+ };
979
+ number2: {
980
+ name: string;
981
+ detail: string;
982
+ };
983
+ };
984
+ };
985
+ GROWTH: {
986
+ description: string;
987
+ abstract: string;
988
+ links: {
989
+ title: string;
990
+ url: string;
991
+ }[];
992
+ functionParameter: {
993
+ number1: {
994
+ name: string;
995
+ detail: string;
996
+ };
997
+ number2: {
998
+ name: string;
999
+ detail: string;
1000
+ };
1001
+ };
1002
+ };
1003
+ HARMEAN: {
1004
+ description: string;
1005
+ abstract: string;
1006
+ links: {
1007
+ title: string;
1008
+ url: string;
1009
+ }[];
1010
+ functionParameter: {
1011
+ number1: {
1012
+ name: string;
1013
+ detail: string;
1014
+ };
1015
+ number2: {
1016
+ name: string;
1017
+ detail: string;
1018
+ };
1019
+ };
1020
+ };
1021
+ HYPGEOM_DIST: {
1022
+ description: string;
1023
+ abstract: string;
1024
+ links: {
1025
+ title: string;
1026
+ url: string;
1027
+ }[];
1028
+ functionParameter: {
1029
+ number1: {
1030
+ name: string;
1031
+ detail: string;
1032
+ };
1033
+ number2: {
1034
+ name: string;
1035
+ detail: string;
1036
+ };
1037
+ };
1038
+ };
1039
+ INTERCEPT: {
1040
+ description: string;
1041
+ abstract: string;
1042
+ links: {
1043
+ title: string;
1044
+ url: string;
1045
+ }[];
1046
+ functionParameter: {
1047
+ knownYs: {
1048
+ name: string;
1049
+ detail: string;
1050
+ };
1051
+ knownXs: {
1052
+ name: string;
1053
+ detail: string;
1054
+ };
1055
+ };
1056
+ };
1057
+ KURT: {
1058
+ description: string;
1059
+ abstract: string;
1060
+ links: {
1061
+ title: string;
1062
+ url: string;
1063
+ }[];
1064
+ functionParameter: {
1065
+ number1: {
1066
+ name: string;
1067
+ detail: string;
1068
+ };
1069
+ number2: {
1070
+ name: string;
1071
+ detail: string;
1072
+ };
1073
+ };
1074
+ };
1075
+ LARGE: {
1076
+ description: string;
1077
+ abstract: string;
1078
+ links: {
1079
+ title: string;
1080
+ url: string;
1081
+ }[];
1082
+ functionParameter: {
1083
+ number1: {
1084
+ name: string;
1085
+ detail: string;
1086
+ };
1087
+ number2: {
1088
+ name: string;
1089
+ detail: string;
1090
+ };
1091
+ };
1092
+ };
1093
+ LINEST: {
1094
+ description: string;
1095
+ abstract: string;
1096
+ links: {
1097
+ title: string;
1098
+ url: string;
1099
+ }[];
1100
+ functionParameter: {
1101
+ number1: {
1102
+ name: string;
1103
+ detail: string;
1104
+ };
1105
+ number2: {
1106
+ name: string;
1107
+ detail: string;
1108
+ };
1109
+ };
1110
+ };
1111
+ LOGEST: {
1112
+ description: string;
1113
+ abstract: string;
1114
+ links: {
1115
+ title: string;
1116
+ url: string;
1117
+ }[];
1118
+ functionParameter: {
1119
+ number1: {
1120
+ name: string;
1121
+ detail: string;
1122
+ };
1123
+ number2: {
1124
+ name: string;
1125
+ detail: string;
1126
+ };
1127
+ };
1128
+ };
1129
+ LOGNORM_DIST: {
1130
+ description: string;
1131
+ abstract: string;
1132
+ links: {
1133
+ title: string;
1134
+ url: string;
1135
+ }[];
1136
+ functionParameter: {
1137
+ number1: {
1138
+ name: string;
1139
+ detail: string;
1140
+ };
1141
+ number2: {
1142
+ name: string;
1143
+ detail: string;
1144
+ };
1145
+ };
1146
+ };
1147
+ LOGNORM_INV: {
1148
+ description: string;
1149
+ abstract: string;
1150
+ links: {
1151
+ title: string;
1152
+ url: string;
1153
+ }[];
1154
+ functionParameter: {
1155
+ number1: {
1156
+ name: string;
1157
+ detail: string;
1158
+ };
1159
+ number2: {
1160
+ name: string;
1161
+ detail: string;
1162
+ };
1163
+ };
1164
+ };
1165
+ MAX: {
1166
+ description: string;
1167
+ abstract: string;
1168
+ links: {
1169
+ title: string;
1170
+ url: string;
1171
+ }[];
1172
+ functionParameter: {
1173
+ number1: {
1174
+ name: string;
1175
+ detail: string;
1176
+ };
1177
+ number2: {
1178
+ name: string;
1179
+ detail: string;
1180
+ };
1181
+ };
1182
+ };
1183
+ MAXA: {
1184
+ description: string;
1185
+ abstract: string;
1186
+ links: {
1187
+ title: string;
1188
+ url: string;
1189
+ }[];
1190
+ functionParameter: {
1191
+ value1: {
1192
+ name: string;
1193
+ detail: string;
1194
+ };
1195
+ value2: {
1196
+ name: string;
1197
+ detail: string;
1198
+ };
1199
+ };
1200
+ };
1201
+ MAXIFS: {
1202
+ description: string;
1203
+ abstract: string;
1204
+ links: {
1205
+ title: string;
1206
+ url: string;
1207
+ }[];
1208
+ functionParameter: {
1209
+ maxRange: {
1210
+ name: string;
1211
+ detail: string;
1212
+ };
1213
+ criteriaRange1: {
1214
+ name: string;
1215
+ detail: string;
1216
+ };
1217
+ criteria1: {
1218
+ name: string;
1219
+ detail: string;
1220
+ };
1221
+ criteriaRange2: {
1222
+ name: string;
1223
+ detail: string;
1224
+ };
1225
+ criteria2: {
1226
+ name: string;
1227
+ detail: string;
1228
+ };
1229
+ };
1230
+ };
1231
+ MEDIAN: {
1232
+ description: string;
1233
+ abstract: string;
1234
+ links: {
1235
+ title: string;
1236
+ url: string;
1237
+ }[];
1238
+ functionParameter: {
1239
+ number1: {
1240
+ name: string;
1241
+ detail: string;
1242
+ };
1243
+ number2: {
1244
+ name: string;
1245
+ detail: string;
1246
+ };
1247
+ };
1248
+ };
1249
+ MIN: {
1250
+ description: string;
1251
+ abstract: string;
1252
+ links: {
1253
+ title: string;
1254
+ url: string;
1255
+ }[];
1256
+ functionParameter: {
1257
+ number1: {
1258
+ name: string;
1259
+ detail: string;
1260
+ };
1261
+ number2: {
1262
+ name: string;
1263
+ detail: string;
1264
+ };
1265
+ };
1266
+ };
1267
+ MINA: {
1268
+ description: string;
1269
+ abstract: string;
1270
+ links: {
1271
+ title: string;
1272
+ url: string;
1273
+ }[];
1274
+ functionParameter: {
1275
+ value1: {
1276
+ name: string;
1277
+ detail: string;
1278
+ };
1279
+ value2: {
1280
+ name: string;
1281
+ detail: string;
1282
+ };
1283
+ };
1284
+ };
1285
+ MINIFS: {
1286
+ description: string;
1287
+ abstract: string;
1288
+ links: {
1289
+ title: string;
1290
+ url: string;
1291
+ }[];
1292
+ functionParameter: {
1293
+ minRange: {
1294
+ name: string;
1295
+ detail: string;
1296
+ };
1297
+ criteriaRange1: {
1298
+ name: string;
1299
+ detail: string;
1300
+ };
1301
+ criteria1: {
1302
+ name: string;
1303
+ detail: string;
1304
+ };
1305
+ criteriaRange2: {
1306
+ name: string;
1307
+ detail: string;
1308
+ };
1309
+ criteria2: {
1310
+ name: string;
1311
+ detail: string;
1312
+ };
1313
+ };
1314
+ };
1315
+ MODE_MULT: {
1316
+ description: string;
1317
+ abstract: string;
1318
+ links: {
1319
+ title: string;
1320
+ url: string;
1321
+ }[];
1322
+ functionParameter: {
1323
+ number1: {
1324
+ name: string;
1325
+ detail: string;
1326
+ };
1327
+ number2: {
1328
+ name: string;
1329
+ detail: string;
1330
+ };
1331
+ };
1332
+ };
1333
+ MODE_SNGL: {
1334
+ description: string;
1335
+ abstract: string;
1336
+ links: {
1337
+ title: string;
1338
+ url: string;
1339
+ }[];
1340
+ functionParameter: {
1341
+ number1: {
1342
+ name: string;
1343
+ detail: string;
1344
+ };
1345
+ number2: {
1346
+ name: string;
1347
+ detail: string;
1348
+ };
1349
+ };
1350
+ };
1351
+ NEGBINOM_DIST: {
1352
+ description: string;
1353
+ abstract: string;
1354
+ links: {
1355
+ title: string;
1356
+ url: string;
1357
+ }[];
1358
+ functionParameter: {
1359
+ number1: {
1360
+ name: string;
1361
+ detail: string;
1362
+ };
1363
+ number2: {
1364
+ name: string;
1365
+ detail: string;
1366
+ };
1367
+ };
1368
+ };
1369
+ NORM_DIST: {
1370
+ description: string;
1371
+ abstract: string;
1372
+ links: {
1373
+ title: string;
1374
+ url: string;
1375
+ }[];
1376
+ functionParameter: {
1377
+ x: {
1378
+ name: string;
1379
+ detail: string;
1380
+ };
1381
+ mean: {
1382
+ name: string;
1383
+ detail: string;
1384
+ };
1385
+ standardDev: {
1386
+ name: string;
1387
+ detail: string;
1388
+ };
1389
+ cumulative: {
1390
+ name: string;
1391
+ detail: string;
1392
+ };
1393
+ };
1394
+ };
1395
+ NORM_INV: {
1396
+ description: string;
1397
+ abstract: string;
1398
+ links: {
1399
+ title: string;
1400
+ url: string;
1401
+ }[];
1402
+ functionParameter: {
1403
+ probability: {
1404
+ name: string;
1405
+ detail: string;
1406
+ };
1407
+ mean: {
1408
+ name: string;
1409
+ detail: string;
1410
+ };
1411
+ standardDev: {
1412
+ name: string;
1413
+ detail: string;
1414
+ };
1415
+ };
1416
+ };
1417
+ NORM_S_DIST: {
1418
+ description: string;
1419
+ abstract: string;
1420
+ links: {
1421
+ title: string;
1422
+ url: string;
1423
+ }[];
1424
+ functionParameter: {
1425
+ z: {
1426
+ name: string;
1427
+ detail: string;
1428
+ };
1429
+ cumulative: {
1430
+ name: string;
1431
+ detail: string;
1432
+ };
1433
+ };
1434
+ };
1435
+ NORM_S_INV: {
1436
+ description: string;
1437
+ abstract: string;
1438
+ links: {
1439
+ title: string;
1440
+ url: string;
1441
+ }[];
1442
+ functionParameter: {
1443
+ probability: {
1444
+ name: string;
1445
+ detail: string;
1446
+ };
1447
+ };
1448
+ };
1449
+ PEARSON: {
1450
+ description: string;
1451
+ abstract: string;
1452
+ links: {
1453
+ title: string;
1454
+ url: string;
1455
+ }[];
1456
+ functionParameter: {
1457
+ number1: {
1458
+ name: string;
1459
+ detail: string;
1460
+ };
1461
+ number2: {
1462
+ name: string;
1463
+ detail: string;
1464
+ };
1465
+ };
1466
+ };
1467
+ PERCENTILE_EXC: {
1468
+ description: string;
1469
+ abstract: string;
1470
+ links: {
1471
+ title: string;
1472
+ url: string;
1473
+ }[];
1474
+ functionParameter: {
1475
+ number1: {
1476
+ name: string;
1477
+ detail: string;
1478
+ };
1479
+ number2: {
1480
+ name: string;
1481
+ detail: string;
1482
+ };
1483
+ };
1484
+ };
1485
+ PERCENTILE_INC: {
1486
+ description: string;
1487
+ abstract: string;
1488
+ links: {
1489
+ title: string;
1490
+ url: string;
1491
+ }[];
1492
+ functionParameter: {
1493
+ number1: {
1494
+ name: string;
1495
+ detail: string;
1496
+ };
1497
+ number2: {
1498
+ name: string;
1499
+ detail: string;
1500
+ };
1501
+ };
1502
+ };
1503
+ PERCENTRANK_EXC: {
1504
+ description: string;
1505
+ abstract: string;
1506
+ links: {
1507
+ title: string;
1508
+ url: string;
1509
+ }[];
1510
+ functionParameter: {
1511
+ number1: {
1512
+ name: string;
1513
+ detail: string;
1514
+ };
1515
+ number2: {
1516
+ name: string;
1517
+ detail: string;
1518
+ };
1519
+ };
1520
+ };
1521
+ PERCENTRANK_INC: {
1522
+ description: string;
1523
+ abstract: string;
1524
+ links: {
1525
+ title: string;
1526
+ url: string;
1527
+ }[];
1528
+ functionParameter: {
1529
+ number1: {
1530
+ name: string;
1531
+ detail: string;
1532
+ };
1533
+ number2: {
1534
+ name: string;
1535
+ detail: string;
1536
+ };
1537
+ };
1538
+ };
1539
+ PERMUT: {
1540
+ description: string;
1541
+ abstract: string;
1542
+ links: {
1543
+ title: string;
1544
+ url: string;
1545
+ }[];
1546
+ functionParameter: {
1547
+ number1: {
1548
+ name: string;
1549
+ detail: string;
1550
+ };
1551
+ number2: {
1552
+ name: string;
1553
+ detail: string;
1554
+ };
1555
+ };
1556
+ };
1557
+ PERMUTATIONA: {
1558
+ description: string;
1559
+ abstract: string;
1560
+ links: {
1561
+ title: string;
1562
+ url: string;
1563
+ }[];
1564
+ functionParameter: {
1565
+ number1: {
1566
+ name: string;
1567
+ detail: string;
1568
+ };
1569
+ number2: {
1570
+ name: string;
1571
+ detail: string;
1572
+ };
1573
+ };
1574
+ };
1575
+ PHI: {
1576
+ description: string;
1577
+ abstract: string;
1578
+ links: {
1579
+ title: string;
1580
+ url: string;
1581
+ }[];
1582
+ functionParameter: {
1583
+ number1: {
1584
+ name: string;
1585
+ detail: string;
1586
+ };
1587
+ number2: {
1588
+ name: string;
1589
+ detail: string;
1590
+ };
1591
+ };
1592
+ };
1593
+ POISSON_DIST: {
1594
+ description: string;
1595
+ abstract: string;
1596
+ links: {
1597
+ title: string;
1598
+ url: string;
1599
+ }[];
1600
+ functionParameter: {
1601
+ number1: {
1602
+ name: string;
1603
+ detail: string;
1604
+ };
1605
+ number2: {
1606
+ name: string;
1607
+ detail: string;
1608
+ };
1609
+ };
1610
+ };
1611
+ PROB: {
1612
+ description: string;
1613
+ abstract: string;
1614
+ links: {
1615
+ title: string;
1616
+ url: string;
1617
+ }[];
1618
+ functionParameter: {
1619
+ number1: {
1620
+ name: string;
1621
+ detail: string;
1622
+ };
1623
+ number2: {
1624
+ name: string;
1625
+ detail: string;
1626
+ };
1627
+ };
1628
+ };
1629
+ QUARTILE_EXC: {
1630
+ description: string;
1631
+ abstract: string;
1632
+ links: {
1633
+ title: string;
1634
+ url: string;
1635
+ }[];
1636
+ functionParameter: {
1637
+ number1: {
1638
+ name: string;
1639
+ detail: string;
1640
+ };
1641
+ number2: {
1642
+ name: string;
1643
+ detail: string;
1644
+ };
1645
+ };
1646
+ };
1647
+ QUARTILE_INC: {
1648
+ description: string;
1649
+ abstract: string;
1650
+ links: {
1651
+ title: string;
1652
+ url: string;
1653
+ }[];
1654
+ functionParameter: {
1655
+ number1: {
1656
+ name: string;
1657
+ detail: string;
1658
+ };
1659
+ number2: {
1660
+ name: string;
1661
+ detail: string;
1662
+ };
1663
+ };
1664
+ };
1665
+ RANK_AVG: {
1666
+ description: string;
1667
+ abstract: string;
1668
+ links: {
1669
+ title: string;
1670
+ url: string;
1671
+ }[];
1672
+ functionParameter: {
1673
+ number: {
1674
+ name: string;
1675
+ detail: string;
1676
+ };
1677
+ ref: {
1678
+ name: string;
1679
+ detail: string;
1680
+ };
1681
+ order: {
1682
+ name: string;
1683
+ detail: string;
1684
+ };
1685
+ };
1686
+ };
1687
+ RANK_EQ: {
1688
+ description: string;
1689
+ abstract: string;
1690
+ links: {
1691
+ title: string;
1692
+ url: string;
1693
+ }[];
1694
+ functionParameter: {
1695
+ number: {
1696
+ name: string;
1697
+ detail: string;
1698
+ };
1699
+ ref: {
1700
+ name: string;
1701
+ detail: string;
1702
+ };
1703
+ order: {
1704
+ name: string;
1705
+ detail: string;
1706
+ };
1707
+ };
1708
+ };
1709
+ RSQ: {
1710
+ description: string;
1711
+ abstract: string;
1712
+ links: {
1713
+ title: string;
1714
+ url: string;
1715
+ }[];
1716
+ functionParameter: {
1717
+ number1: {
1718
+ name: string;
1719
+ detail: string;
1720
+ };
1721
+ number2: {
1722
+ name: string;
1723
+ detail: string;
1724
+ };
1725
+ };
1726
+ };
1727
+ SKEW: {
1728
+ description: string;
1729
+ abstract: string;
1730
+ links: {
1731
+ title: string;
1732
+ url: string;
1733
+ }[];
1734
+ functionParameter: {
1735
+ number1: {
1736
+ name: string;
1737
+ detail: string;
1738
+ };
1739
+ number2: {
1740
+ name: string;
1741
+ detail: string;
1742
+ };
1743
+ };
1744
+ };
1745
+ SKEW_P: {
1746
+ description: string;
1747
+ abstract: string;
1748
+ links: {
1749
+ title: string;
1750
+ url: string;
1751
+ }[];
1752
+ functionParameter: {
1753
+ number1: {
1754
+ name: string;
1755
+ detail: string;
1756
+ };
1757
+ number2: {
1758
+ name: string;
1759
+ detail: string;
1760
+ };
1761
+ };
1762
+ };
1763
+ SLOPE: {
1764
+ description: string;
1765
+ abstract: string;
1766
+ links: {
1767
+ title: string;
1768
+ url: string;
1769
+ }[];
1770
+ functionParameter: {
1771
+ number1: {
1772
+ name: string;
1773
+ detail: string;
1774
+ };
1775
+ number2: {
1776
+ name: string;
1777
+ detail: string;
1778
+ };
1779
+ };
1780
+ };
1781
+ SMALL: {
1782
+ description: string;
1783
+ abstract: string;
1784
+ links: {
1785
+ title: string;
1786
+ url: string;
1787
+ }[];
1788
+ functionParameter: {
1789
+ number1: {
1790
+ name: string;
1791
+ detail: string;
1792
+ };
1793
+ number2: {
1794
+ name: string;
1795
+ detail: string;
1796
+ };
1797
+ };
1798
+ };
1799
+ STANDARDIZE: {
1800
+ description: string;
1801
+ abstract: string;
1802
+ links: {
1803
+ title: string;
1804
+ url: string;
1805
+ }[];
1806
+ functionParameter: {
1807
+ number1: {
1808
+ name: string;
1809
+ detail: string;
1810
+ };
1811
+ number2: {
1812
+ name: string;
1813
+ detail: string;
1814
+ };
1815
+ };
1816
+ };
1817
+ STDEV_P: {
1818
+ description: string;
1819
+ abstract: string;
1820
+ links: {
1821
+ title: string;
1822
+ url: string;
1823
+ }[];
1824
+ functionParameter: {
1825
+ number1: {
1826
+ name: string;
1827
+ detail: string;
1828
+ };
1829
+ number2: {
1830
+ name: string;
1831
+ detail: string;
1832
+ };
1833
+ };
1834
+ };
1835
+ STDEV_S: {
1836
+ description: string;
1837
+ abstract: string;
1838
+ links: {
1839
+ title: string;
1840
+ url: string;
1841
+ }[];
1842
+ functionParameter: {
1843
+ number1: {
1844
+ name: string;
1845
+ detail: string;
1846
+ };
1847
+ number2: {
1848
+ name: string;
1849
+ detail: string;
1850
+ };
1851
+ };
1852
+ };
1853
+ STDEVA: {
1854
+ description: string;
1855
+ abstract: string;
1856
+ links: {
1857
+ title: string;
1858
+ url: string;
1859
+ }[];
1860
+ functionParameter: {
1861
+ value1: {
1862
+ name: string;
1863
+ detail: string;
1864
+ };
1865
+ value2: {
1866
+ name: string;
1867
+ detail: string;
1868
+ };
1869
+ };
1870
+ };
1871
+ STDEVPA: {
1872
+ description: string;
1873
+ abstract: string;
1874
+ links: {
1875
+ title: string;
1876
+ url: string;
1877
+ }[];
1878
+ functionParameter: {
1879
+ value1: {
1880
+ name: string;
1881
+ detail: string;
1882
+ };
1883
+ value2: {
1884
+ name: string;
1885
+ detail: string;
1886
+ };
1887
+ };
1888
+ };
1889
+ STEYX: {
1890
+ description: string;
1891
+ abstract: string;
1892
+ links: {
1893
+ title: string;
1894
+ url: string;
1895
+ }[];
1896
+ functionParameter: {
1897
+ number1: {
1898
+ name: string;
1899
+ detail: string;
1900
+ };
1901
+ number2: {
1902
+ name: string;
1903
+ detail: string;
1904
+ };
1905
+ };
1906
+ };
1907
+ T_DIST: {
1908
+ description: string;
1909
+ abstract: string;
1910
+ links: {
1911
+ title: string;
1912
+ url: string;
1913
+ }[];
1914
+ functionParameter: {
1915
+ number1: {
1916
+ name: string;
1917
+ detail: string;
1918
+ };
1919
+ number2: {
1920
+ name: string;
1921
+ detail: string;
1922
+ };
1923
+ };
1924
+ };
1925
+ T_DIST_2T: {
1926
+ description: string;
1927
+ abstract: string;
1928
+ links: {
1929
+ title: string;
1930
+ url: string;
1931
+ }[];
1932
+ functionParameter: {
1933
+ number1: {
1934
+ name: string;
1935
+ detail: string;
1936
+ };
1937
+ number2: {
1938
+ name: string;
1939
+ detail: string;
1940
+ };
1941
+ };
1942
+ };
1943
+ T_DIST_RT: {
1944
+ description: string;
1945
+ abstract: string;
1946
+ links: {
1947
+ title: string;
1948
+ url: string;
1949
+ }[];
1950
+ functionParameter: {
1951
+ number1: {
1952
+ name: string;
1953
+ detail: string;
1954
+ };
1955
+ number2: {
1956
+ name: string;
1957
+ detail: string;
1958
+ };
1959
+ };
1960
+ };
1961
+ T_INV: {
1962
+ description: string;
1963
+ abstract: string;
1964
+ links: {
1965
+ title: string;
1966
+ url: string;
1967
+ }[];
1968
+ functionParameter: {
1969
+ number1: {
1970
+ name: string;
1971
+ detail: string;
1972
+ };
1973
+ number2: {
1974
+ name: string;
1975
+ detail: string;
1976
+ };
1977
+ };
1978
+ };
1979
+ T_INV_2T: {
1980
+ description: string;
1981
+ abstract: string;
1982
+ links: {
1983
+ title: string;
1984
+ url: string;
1985
+ }[];
1986
+ functionParameter: {
1987
+ number1: {
1988
+ name: string;
1989
+ detail: string;
1990
+ };
1991
+ number2: {
1992
+ name: string;
1993
+ detail: string;
1994
+ };
1995
+ };
1996
+ };
1997
+ T_TEST: {
1998
+ description: string;
1999
+ abstract: string;
2000
+ links: {
2001
+ title: string;
2002
+ url: string;
2003
+ }[];
2004
+ functionParameter: {
2005
+ number1: {
2006
+ name: string;
2007
+ detail: string;
2008
+ };
2009
+ number2: {
2010
+ name: string;
2011
+ detail: string;
2012
+ };
2013
+ };
2014
+ };
2015
+ TREND: {
2016
+ description: string;
2017
+ abstract: string;
2018
+ links: {
2019
+ title: string;
2020
+ url: string;
2021
+ }[];
2022
+ functionParameter: {
2023
+ number1: {
2024
+ name: string;
2025
+ detail: string;
2026
+ };
2027
+ number2: {
2028
+ name: string;
2029
+ detail: string;
2030
+ };
2031
+ };
2032
+ };
2033
+ TRIMMEAN: {
2034
+ description: string;
2035
+ abstract: string;
2036
+ links: {
2037
+ title: string;
2038
+ url: string;
2039
+ }[];
2040
+ functionParameter: {
2041
+ number1: {
2042
+ name: string;
2043
+ detail: string;
2044
+ };
2045
+ number2: {
2046
+ name: string;
2047
+ detail: string;
2048
+ };
2049
+ };
2050
+ };
2051
+ VAR_P: {
2052
+ description: string;
2053
+ abstract: string;
2054
+ links: {
2055
+ title: string;
2056
+ url: string;
2057
+ }[];
2058
+ functionParameter: {
2059
+ number1: {
2060
+ name: string;
2061
+ detail: string;
2062
+ };
2063
+ number2: {
2064
+ name: string;
2065
+ detail: string;
2066
+ };
2067
+ };
2068
+ };
2069
+ VAR_S: {
2070
+ description: string;
2071
+ abstract: string;
2072
+ links: {
2073
+ title: string;
2074
+ url: string;
2075
+ }[];
2076
+ functionParameter: {
2077
+ number1: {
2078
+ name: string;
2079
+ detail: string;
2080
+ };
2081
+ number2: {
2082
+ name: string;
2083
+ detail: string;
2084
+ };
2085
+ };
2086
+ };
2087
+ VARA: {
2088
+ description: string;
2089
+ abstract: string;
2090
+ links: {
2091
+ title: string;
2092
+ url: string;
2093
+ }[];
2094
+ functionParameter: {
2095
+ value1: {
2096
+ name: string;
2097
+ detail: string;
2098
+ };
2099
+ value2: {
2100
+ name: string;
2101
+ detail: string;
2102
+ };
2103
+ };
2104
+ };
2105
+ VARPA: {
2106
+ description: string;
2107
+ abstract: string;
2108
+ links: {
2109
+ title: string;
2110
+ url: string;
2111
+ }[];
2112
+ functionParameter: {
2113
+ value1: {
2114
+ name: string;
2115
+ detail: string;
2116
+ };
2117
+ value2: {
2118
+ name: string;
2119
+ detail: string;
2120
+ };
2121
+ };
2122
+ };
2123
+ WEIBULL_DIST: {
2124
+ description: string;
2125
+ abstract: string;
2126
+ links: {
2127
+ title: string;
2128
+ url: string;
2129
+ }[];
2130
+ functionParameter: {
2131
+ number1: {
2132
+ name: string;
2133
+ detail: string;
2134
+ };
2135
+ number2: {
2136
+ name: string;
2137
+ detail: string;
2138
+ };
2139
+ };
2140
+ };
2141
+ Z_TEST: {
2142
+ description: string;
2143
+ abstract: string;
2144
+ links: {
2145
+ title: string;
2146
+ url: string;
2147
+ }[];
2148
+ functionParameter: {
2149
+ number1: {
2150
+ name: string;
2151
+ detail: string;
2152
+ };
2153
+ number2: {
2154
+ name: string;
2155
+ detail: string;
2156
+ };
2157
+ };
2158
+ };
2159
+ };
2160
+ export default _default;