@univerjs/sheets-formula-ui 0.4.2 → 0.5.0-beta.0
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/lib/cjs/index.js +9 -7
- package/lib/cjs/locale/en-US.js +40 -0
- package/lib/cjs/locale/fa-IR.js +40 -0
- package/lib/cjs/locale/ru-RU.js +40 -0
- package/lib/cjs/locale/vi-VN.js +37 -0
- package/lib/cjs/locale/zh-CN.js +38 -0
- package/lib/cjs/locale/zh-TW.js +38 -0
- package/lib/es/index.js +3431 -2453
- package/lib/es/locale/en-US.js +7684 -0
- package/lib/es/locale/fa-IR.js +7684 -0
- package/lib/es/locale/ru-RU.js +7683 -0
- package/lib/es/locale/vi-VN.js +7467 -0
- package/lib/es/locale/zh-CN.js +7661 -0
- package/lib/es/locale/zh-TW.js +7661 -0
- package/lib/index.css +1 -1
- package/lib/types/common/selection.d.ts +1 -1
- package/lib/types/controllers/config.schema.d.ts +1 -1
- package/lib/types/controllers/formula-editor-show.controller.d.ts +7 -3
- package/lib/types/index.d.ts +1 -0
- package/lib/types/locale/en-US.d.ts +344 -156
- package/lib/types/locale/fa-IR.d.ts +344 -156
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +106 -30
- package/lib/types/locale/function-list/lookup/en-US.d.ts +1 -5
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +1 -5
- package/lib/types/locale/function-list/lookup/vi-VN.d.ts +14 -0
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +1 -5
- package/lib/types/locale/function-list/lookup/zh-TW.d.ts +1 -5
- package/lib/types/locale/function-list/statistical/en-US.d.ts +173 -93
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +173 -93
- package/lib/types/locale/function-list/statistical/vi-VN.d.ts +983 -57
- package/lib/types/locale/function-list/statistical/zh-CN.d.ts +173 -93
- package/lib/types/locale/function-list/statistical/zh-TW.d.ts +173 -93
- package/lib/types/locale/function-list/text/en-US.d.ts +64 -28
- package/lib/types/locale/function-list/text/ja-JP.d.ts +64 -28
- package/lib/types/locale/function-list/text/ru-RU.d.ts +220 -106
- package/lib/types/locale/function-list/text/vi-VN.d.ts +124 -14
- package/lib/types/locale/function-list/text/zh-CN.d.ts +64 -28
- package/lib/types/locale/function-list/text/zh-TW.d.ts +64 -28
- package/lib/types/locale/ru-RU.d.ts +500 -234
- package/lib/types/locale/vi-VN.d.ts +1231 -105
- package/lib/types/locale/zh-CN.d.ts +344 -156
- package/lib/types/locale/zh-TW.d.ts +344 -156
- package/lib/types/services/render-services/ref-selections.render-service.d.ts +28 -4
- package/lib/types/sheets-formula-ui.plugin.d.ts +0 -1
- package/lib/types/views/formula-editor/help-function/HelpFunction.d.ts +11 -0
- package/lib/types/views/formula-editor/hooks/useFormulaDescribe.d.ts +7 -0
- package/lib/types/views/formula-editor/hooks/useFormulaSearch.d.ts +12 -0
- package/lib/types/views/formula-editor/hooks/useResizeScrollObserver.d.ts +18 -0
- package/lib/types/views/formula-editor/hooks/useSelectionAdd.d.ts +19 -0
- package/lib/types/views/formula-editor/hooks/useSheetSelectionChange.d.ts +3 -0
- package/lib/types/views/formula-editor/hooks/useStateRef.d.ts +18 -0
- package/lib/types/views/formula-editor/hooks/useVerify.d.ts +2 -0
- package/lib/types/views/formula-editor/index.d.ts +17 -0
- package/lib/types/views/formula-editor/search-function/SearchFunction.d.ts +12 -0
- package/lib/types/{controllers/utils/__tests__/ref-range-formula.spec.d.ts → views/formula-editor/utils/getFormulaText.d.ts} +1 -1
- package/lib/types/views/range-selector/hooks/useEmitChange.d.ts +3 -0
- package/lib/types/views/range-selector/hooks/useFirstHighlightDoc.d.ts +3 -0
- package/lib/types/views/range-selector/hooks/useFocus.d.ts +2 -0
- package/lib/types/views/range-selector/hooks/useFormulaToken.d.ts +2 -4
- package/lib/types/views/range-selector/hooks/useHighlight.d.ts +4 -2
- package/lib/types/views/range-selector/hooks/useLeftAndRightArrow.d.ts +2 -0
- package/lib/types/views/range-selector/hooks/useOnlyOneRange.d.ts +16 -0
- package/lib/types/views/range-selector/hooks/useRefactorEffect.d.ts +1 -1
- package/lib/types/{controllers/utils/__tests__/offset-formula-data.spec.d.ts → views/range-selector/hooks/useRefocus.d.ts} +1 -1
- package/lib/types/views/range-selector/hooks/useResetSelection.d.ts +16 -0
- package/lib/types/views/range-selector/hooks/useSheetSelectionChange.d.ts +1 -1
- package/lib/types/views/range-selector/hooks/useSwitchSheet.d.ts +16 -0
- package/lib/types/views/range-selector/hooks/useVerify.d.ts +2 -2
- package/lib/types/views/range-selector/index.d.ts +1 -5
- package/lib/types/views/range-selector/utils/unitRangesToText.d.ts +1 -1
- package/lib/umd/index.js +9 -7
- package/lib/umd/locale/en-US.js +40 -0
- package/lib/umd/locale/fa-IR.js +40 -0
- package/lib/umd/locale/ru-RU.js +40 -0
- package/lib/umd/locale/vi-VN.js +37 -0
- package/lib/umd/locale/zh-CN.js +38 -0
- package/lib/umd/locale/zh-TW.js +38 -0
- package/package.json +33 -27
- package/lib/locale/en-US.json +0 -11054
- package/lib/locale/fa-IR.json +0 -11054
- package/lib/locale/ru-RU.json +0 -10969
- package/lib/locale/vi-VN.json +0 -9678
- package/lib/locale/zh-CN.json +0 -11054
- package/lib/locale/zh-TW.json +0 -11054
- package/lib/types/controllers/utils/offset-formula-data.d.ts +0 -15
- package/lib/types/controllers/utils/ref-range-formula.d.ts +0 -71
|
@@ -846,11 +846,11 @@ declare const _default: {
|
|
|
846
846
|
url: string;
|
|
847
847
|
}[];
|
|
848
848
|
functionParameter: {
|
|
849
|
-
|
|
849
|
+
dataArray: {
|
|
850
850
|
name: string;
|
|
851
851
|
detail: string;
|
|
852
852
|
};
|
|
853
|
-
|
|
853
|
+
binsArray: {
|
|
854
854
|
name: string;
|
|
855
855
|
detail: string;
|
|
856
856
|
};
|
|
@@ -864,11 +864,7 @@ declare const _default: {
|
|
|
864
864
|
url: string;
|
|
865
865
|
}[];
|
|
866
866
|
functionParameter: {
|
|
867
|
-
|
|
868
|
-
name: string;
|
|
869
|
-
detail: string;
|
|
870
|
-
};
|
|
871
|
-
number2: {
|
|
867
|
+
number: {
|
|
872
868
|
name: string;
|
|
873
869
|
detail: string;
|
|
874
870
|
};
|
|
@@ -882,11 +878,19 @@ declare const _default: {
|
|
|
882
878
|
url: string;
|
|
883
879
|
}[];
|
|
884
880
|
functionParameter: {
|
|
885
|
-
|
|
881
|
+
x: {
|
|
886
882
|
name: string;
|
|
887
883
|
detail: string;
|
|
888
884
|
};
|
|
889
|
-
|
|
885
|
+
alpha: {
|
|
886
|
+
name: string;
|
|
887
|
+
detail: string;
|
|
888
|
+
};
|
|
889
|
+
beta: {
|
|
890
|
+
name: string;
|
|
891
|
+
detail: string;
|
|
892
|
+
};
|
|
893
|
+
cumulative: {
|
|
890
894
|
name: string;
|
|
891
895
|
detail: string;
|
|
892
896
|
};
|
|
@@ -900,11 +904,15 @@ declare const _default: {
|
|
|
900
904
|
url: string;
|
|
901
905
|
}[];
|
|
902
906
|
functionParameter: {
|
|
903
|
-
|
|
907
|
+
probability: {
|
|
904
908
|
name: string;
|
|
905
909
|
detail: string;
|
|
906
910
|
};
|
|
907
|
-
|
|
911
|
+
alpha: {
|
|
912
|
+
name: string;
|
|
913
|
+
detail: string;
|
|
914
|
+
};
|
|
915
|
+
beta: {
|
|
908
916
|
name: string;
|
|
909
917
|
detail: string;
|
|
910
918
|
};
|
|
@@ -918,11 +926,7 @@ declare const _default: {
|
|
|
918
926
|
url: string;
|
|
919
927
|
}[];
|
|
920
928
|
functionParameter: {
|
|
921
|
-
|
|
922
|
-
name: string;
|
|
923
|
-
detail: string;
|
|
924
|
-
};
|
|
925
|
-
number2: {
|
|
929
|
+
x: {
|
|
926
930
|
name: string;
|
|
927
931
|
detail: string;
|
|
928
932
|
};
|
|
@@ -936,11 +940,7 @@ declare const _default: {
|
|
|
936
940
|
url: string;
|
|
937
941
|
}[];
|
|
938
942
|
functionParameter: {
|
|
939
|
-
|
|
940
|
-
name: string;
|
|
941
|
-
detail: string;
|
|
942
|
-
};
|
|
943
|
-
number2: {
|
|
943
|
+
x: {
|
|
944
944
|
name: string;
|
|
945
945
|
detail: string;
|
|
946
946
|
};
|
|
@@ -954,11 +954,7 @@ declare const _default: {
|
|
|
954
954
|
url: string;
|
|
955
955
|
}[];
|
|
956
956
|
functionParameter: {
|
|
957
|
-
|
|
958
|
-
name: string;
|
|
959
|
-
detail: string;
|
|
960
|
-
};
|
|
961
|
-
number2: {
|
|
957
|
+
z: {
|
|
962
958
|
name: string;
|
|
963
959
|
detail: string;
|
|
964
960
|
};
|
|
@@ -990,11 +986,19 @@ declare const _default: {
|
|
|
990
986
|
url: string;
|
|
991
987
|
}[];
|
|
992
988
|
functionParameter: {
|
|
993
|
-
|
|
989
|
+
knownYs: {
|
|
994
990
|
name: string;
|
|
995
991
|
detail: string;
|
|
996
992
|
};
|
|
997
|
-
|
|
993
|
+
knownXs: {
|
|
994
|
+
name: string;
|
|
995
|
+
detail: string;
|
|
996
|
+
};
|
|
997
|
+
newXs: {
|
|
998
|
+
name: string;
|
|
999
|
+
detail: string;
|
|
1000
|
+
};
|
|
1001
|
+
constb: {
|
|
998
1002
|
name: string;
|
|
999
1003
|
detail: string;
|
|
1000
1004
|
};
|
|
@@ -1026,11 +1030,23 @@ declare const _default: {
|
|
|
1026
1030
|
url: string;
|
|
1027
1031
|
}[];
|
|
1028
1032
|
functionParameter: {
|
|
1029
|
-
|
|
1033
|
+
sampleS: {
|
|
1030
1034
|
name: string;
|
|
1031
1035
|
detail: string;
|
|
1032
1036
|
};
|
|
1033
|
-
|
|
1037
|
+
numberSample: {
|
|
1038
|
+
name: string;
|
|
1039
|
+
detail: string;
|
|
1040
|
+
};
|
|
1041
|
+
populationS: {
|
|
1042
|
+
name: string;
|
|
1043
|
+
detail: string;
|
|
1044
|
+
};
|
|
1045
|
+
numberPop: {
|
|
1046
|
+
name: string;
|
|
1047
|
+
detail: string;
|
|
1048
|
+
};
|
|
1049
|
+
cumulative: {
|
|
1034
1050
|
name: string;
|
|
1035
1051
|
detail: string;
|
|
1036
1052
|
};
|
|
@@ -1080,11 +1096,11 @@ declare const _default: {
|
|
|
1080
1096
|
url: string;
|
|
1081
1097
|
}[];
|
|
1082
1098
|
functionParameter: {
|
|
1083
|
-
|
|
1099
|
+
array: {
|
|
1084
1100
|
name: string;
|
|
1085
1101
|
detail: string;
|
|
1086
1102
|
};
|
|
1087
|
-
|
|
1103
|
+
k: {
|
|
1088
1104
|
name: string;
|
|
1089
1105
|
detail: string;
|
|
1090
1106
|
};
|
|
@@ -1134,11 +1150,19 @@ declare const _default: {
|
|
|
1134
1150
|
url: string;
|
|
1135
1151
|
}[];
|
|
1136
1152
|
functionParameter: {
|
|
1137
|
-
|
|
1153
|
+
x: {
|
|
1138
1154
|
name: string;
|
|
1139
1155
|
detail: string;
|
|
1140
1156
|
};
|
|
1141
|
-
|
|
1157
|
+
mean: {
|
|
1158
|
+
name: string;
|
|
1159
|
+
detail: string;
|
|
1160
|
+
};
|
|
1161
|
+
standardDev: {
|
|
1162
|
+
name: string;
|
|
1163
|
+
detail: string;
|
|
1164
|
+
};
|
|
1165
|
+
cumulative: {
|
|
1142
1166
|
name: string;
|
|
1143
1167
|
detail: string;
|
|
1144
1168
|
};
|
|
@@ -1152,11 +1176,15 @@ declare const _default: {
|
|
|
1152
1176
|
url: string;
|
|
1153
1177
|
}[];
|
|
1154
1178
|
functionParameter: {
|
|
1155
|
-
|
|
1179
|
+
probability: {
|
|
1156
1180
|
name: string;
|
|
1157
1181
|
detail: string;
|
|
1158
1182
|
};
|
|
1159
|
-
|
|
1183
|
+
mean: {
|
|
1184
|
+
name: string;
|
|
1185
|
+
detail: string;
|
|
1186
|
+
};
|
|
1187
|
+
standardDev: {
|
|
1160
1188
|
name: string;
|
|
1161
1189
|
detail: string;
|
|
1162
1190
|
};
|
|
@@ -1356,11 +1384,19 @@ declare const _default: {
|
|
|
1356
1384
|
url: string;
|
|
1357
1385
|
}[];
|
|
1358
1386
|
functionParameter: {
|
|
1359
|
-
|
|
1387
|
+
numberF: {
|
|
1360
1388
|
name: string;
|
|
1361
1389
|
detail: string;
|
|
1362
1390
|
};
|
|
1363
|
-
|
|
1391
|
+
numberS: {
|
|
1392
|
+
name: string;
|
|
1393
|
+
detail: string;
|
|
1394
|
+
};
|
|
1395
|
+
probabilityS: {
|
|
1396
|
+
name: string;
|
|
1397
|
+
detail: string;
|
|
1398
|
+
};
|
|
1399
|
+
cumulative: {
|
|
1364
1400
|
name: string;
|
|
1365
1401
|
detail: string;
|
|
1366
1402
|
};
|
|
@@ -1454,11 +1490,11 @@ declare const _default: {
|
|
|
1454
1490
|
url: string;
|
|
1455
1491
|
}[];
|
|
1456
1492
|
functionParameter: {
|
|
1457
|
-
|
|
1493
|
+
array1: {
|
|
1458
1494
|
name: string;
|
|
1459
1495
|
detail: string;
|
|
1460
1496
|
};
|
|
1461
|
-
|
|
1497
|
+
array2: {
|
|
1462
1498
|
name: string;
|
|
1463
1499
|
detail: string;
|
|
1464
1500
|
};
|
|
@@ -1472,11 +1508,11 @@ declare const _default: {
|
|
|
1472
1508
|
url: string;
|
|
1473
1509
|
}[];
|
|
1474
1510
|
functionParameter: {
|
|
1475
|
-
|
|
1511
|
+
array: {
|
|
1476
1512
|
name: string;
|
|
1477
1513
|
detail: string;
|
|
1478
1514
|
};
|
|
1479
|
-
|
|
1515
|
+
k: {
|
|
1480
1516
|
name: string;
|
|
1481
1517
|
detail: string;
|
|
1482
1518
|
};
|
|
@@ -1490,11 +1526,11 @@ declare const _default: {
|
|
|
1490
1526
|
url: string;
|
|
1491
1527
|
}[];
|
|
1492
1528
|
functionParameter: {
|
|
1493
|
-
|
|
1529
|
+
array: {
|
|
1494
1530
|
name: string;
|
|
1495
1531
|
detail: string;
|
|
1496
1532
|
};
|
|
1497
|
-
|
|
1533
|
+
k: {
|
|
1498
1534
|
name: string;
|
|
1499
1535
|
detail: string;
|
|
1500
1536
|
};
|
|
@@ -1508,11 +1544,15 @@ declare const _default: {
|
|
|
1508
1544
|
url: string;
|
|
1509
1545
|
}[];
|
|
1510
1546
|
functionParameter: {
|
|
1511
|
-
|
|
1547
|
+
array: {
|
|
1512
1548
|
name: string;
|
|
1513
1549
|
detail: string;
|
|
1514
1550
|
};
|
|
1515
|
-
|
|
1551
|
+
x: {
|
|
1552
|
+
name: string;
|
|
1553
|
+
detail: string;
|
|
1554
|
+
};
|
|
1555
|
+
significance: {
|
|
1516
1556
|
name: string;
|
|
1517
1557
|
detail: string;
|
|
1518
1558
|
};
|
|
@@ -1526,11 +1566,15 @@ declare const _default: {
|
|
|
1526
1566
|
url: string;
|
|
1527
1567
|
}[];
|
|
1528
1568
|
functionParameter: {
|
|
1529
|
-
|
|
1569
|
+
array: {
|
|
1530
1570
|
name: string;
|
|
1531
1571
|
detail: string;
|
|
1532
1572
|
};
|
|
1533
|
-
|
|
1573
|
+
x: {
|
|
1574
|
+
name: string;
|
|
1575
|
+
detail: string;
|
|
1576
|
+
};
|
|
1577
|
+
significance: {
|
|
1534
1578
|
name: string;
|
|
1535
1579
|
detail: string;
|
|
1536
1580
|
};
|
|
@@ -1544,11 +1588,11 @@ declare const _default: {
|
|
|
1544
1588
|
url: string;
|
|
1545
1589
|
}[];
|
|
1546
1590
|
functionParameter: {
|
|
1547
|
-
|
|
1591
|
+
number: {
|
|
1548
1592
|
name: string;
|
|
1549
1593
|
detail: string;
|
|
1550
1594
|
};
|
|
1551
|
-
|
|
1595
|
+
numberChosen: {
|
|
1552
1596
|
name: string;
|
|
1553
1597
|
detail: string;
|
|
1554
1598
|
};
|
|
@@ -1562,11 +1606,11 @@ declare const _default: {
|
|
|
1562
1606
|
url: string;
|
|
1563
1607
|
}[];
|
|
1564
1608
|
functionParameter: {
|
|
1565
|
-
|
|
1609
|
+
number: {
|
|
1566
1610
|
name: string;
|
|
1567
1611
|
detail: string;
|
|
1568
1612
|
};
|
|
1569
|
-
|
|
1613
|
+
numberChosen: {
|
|
1570
1614
|
name: string;
|
|
1571
1615
|
detail: string;
|
|
1572
1616
|
};
|
|
@@ -1580,11 +1624,7 @@ declare const _default: {
|
|
|
1580
1624
|
url: string;
|
|
1581
1625
|
}[];
|
|
1582
1626
|
functionParameter: {
|
|
1583
|
-
|
|
1584
|
-
name: string;
|
|
1585
|
-
detail: string;
|
|
1586
|
-
};
|
|
1587
|
-
number2: {
|
|
1627
|
+
x: {
|
|
1588
1628
|
name: string;
|
|
1589
1629
|
detail: string;
|
|
1590
1630
|
};
|
|
@@ -1598,11 +1638,15 @@ declare const _default: {
|
|
|
1598
1638
|
url: string;
|
|
1599
1639
|
}[];
|
|
1600
1640
|
functionParameter: {
|
|
1601
|
-
|
|
1641
|
+
x: {
|
|
1602
1642
|
name: string;
|
|
1603
1643
|
detail: string;
|
|
1604
1644
|
};
|
|
1605
|
-
|
|
1645
|
+
mean: {
|
|
1646
|
+
name: string;
|
|
1647
|
+
detail: string;
|
|
1648
|
+
};
|
|
1649
|
+
cumulative: {
|
|
1606
1650
|
name: string;
|
|
1607
1651
|
detail: string;
|
|
1608
1652
|
};
|
|
@@ -1616,11 +1660,19 @@ declare const _default: {
|
|
|
1616
1660
|
url: string;
|
|
1617
1661
|
}[];
|
|
1618
1662
|
functionParameter: {
|
|
1619
|
-
|
|
1663
|
+
xRange: {
|
|
1620
1664
|
name: string;
|
|
1621
1665
|
detail: string;
|
|
1622
1666
|
};
|
|
1623
|
-
|
|
1667
|
+
probRange: {
|
|
1668
|
+
name: string;
|
|
1669
|
+
detail: string;
|
|
1670
|
+
};
|
|
1671
|
+
lowerLimit: {
|
|
1672
|
+
name: string;
|
|
1673
|
+
detail: string;
|
|
1674
|
+
};
|
|
1675
|
+
upperLimit: {
|
|
1624
1676
|
name: string;
|
|
1625
1677
|
detail: string;
|
|
1626
1678
|
};
|
|
@@ -1634,11 +1686,11 @@ declare const _default: {
|
|
|
1634
1686
|
url: string;
|
|
1635
1687
|
}[];
|
|
1636
1688
|
functionParameter: {
|
|
1637
|
-
|
|
1689
|
+
array: {
|
|
1638
1690
|
name: string;
|
|
1639
1691
|
detail: string;
|
|
1640
1692
|
};
|
|
1641
|
-
|
|
1693
|
+
quart: {
|
|
1642
1694
|
name: string;
|
|
1643
1695
|
detail: string;
|
|
1644
1696
|
};
|
|
@@ -1652,11 +1704,11 @@ declare const _default: {
|
|
|
1652
1704
|
url: string;
|
|
1653
1705
|
}[];
|
|
1654
1706
|
functionParameter: {
|
|
1655
|
-
|
|
1707
|
+
array: {
|
|
1656
1708
|
name: string;
|
|
1657
1709
|
detail: string;
|
|
1658
1710
|
};
|
|
1659
|
-
|
|
1711
|
+
quart: {
|
|
1660
1712
|
name: string;
|
|
1661
1713
|
detail: string;
|
|
1662
1714
|
};
|
|
@@ -1714,11 +1766,11 @@ declare const _default: {
|
|
|
1714
1766
|
url: string;
|
|
1715
1767
|
}[];
|
|
1716
1768
|
functionParameter: {
|
|
1717
|
-
|
|
1769
|
+
array1: {
|
|
1718
1770
|
name: string;
|
|
1719
1771
|
detail: string;
|
|
1720
1772
|
};
|
|
1721
|
-
|
|
1773
|
+
array2: {
|
|
1722
1774
|
name: string;
|
|
1723
1775
|
detail: string;
|
|
1724
1776
|
};
|
|
@@ -1768,11 +1820,11 @@ declare const _default: {
|
|
|
1768
1820
|
url: string;
|
|
1769
1821
|
}[];
|
|
1770
1822
|
functionParameter: {
|
|
1771
|
-
|
|
1823
|
+
knownYs: {
|
|
1772
1824
|
name: string;
|
|
1773
1825
|
detail: string;
|
|
1774
1826
|
};
|
|
1775
|
-
|
|
1827
|
+
knownXs: {
|
|
1776
1828
|
name: string;
|
|
1777
1829
|
detail: string;
|
|
1778
1830
|
};
|
|
@@ -1786,11 +1838,11 @@ declare const _default: {
|
|
|
1786
1838
|
url: string;
|
|
1787
1839
|
}[];
|
|
1788
1840
|
functionParameter: {
|
|
1789
|
-
|
|
1841
|
+
array: {
|
|
1790
1842
|
name: string;
|
|
1791
1843
|
detail: string;
|
|
1792
1844
|
};
|
|
1793
|
-
|
|
1845
|
+
k: {
|
|
1794
1846
|
name: string;
|
|
1795
1847
|
detail: string;
|
|
1796
1848
|
};
|
|
@@ -1804,11 +1856,15 @@ declare const _default: {
|
|
|
1804
1856
|
url: string;
|
|
1805
1857
|
}[];
|
|
1806
1858
|
functionParameter: {
|
|
1807
|
-
|
|
1859
|
+
x: {
|
|
1808
1860
|
name: string;
|
|
1809
1861
|
detail: string;
|
|
1810
1862
|
};
|
|
1811
|
-
|
|
1863
|
+
mean: {
|
|
1864
|
+
name: string;
|
|
1865
|
+
detail: string;
|
|
1866
|
+
};
|
|
1867
|
+
standardDev: {
|
|
1812
1868
|
name: string;
|
|
1813
1869
|
detail: string;
|
|
1814
1870
|
};
|
|
@@ -1894,11 +1950,11 @@ declare const _default: {
|
|
|
1894
1950
|
url: string;
|
|
1895
1951
|
}[];
|
|
1896
1952
|
functionParameter: {
|
|
1897
|
-
|
|
1953
|
+
knownYs: {
|
|
1898
1954
|
name: string;
|
|
1899
1955
|
detail: string;
|
|
1900
1956
|
};
|
|
1901
|
-
|
|
1957
|
+
knownXs: {
|
|
1902
1958
|
name: string;
|
|
1903
1959
|
detail: string;
|
|
1904
1960
|
};
|
|
@@ -1912,11 +1968,15 @@ declare const _default: {
|
|
|
1912
1968
|
url: string;
|
|
1913
1969
|
}[];
|
|
1914
1970
|
functionParameter: {
|
|
1915
|
-
|
|
1971
|
+
x: {
|
|
1916
1972
|
name: string;
|
|
1917
1973
|
detail: string;
|
|
1918
1974
|
};
|
|
1919
|
-
|
|
1975
|
+
degFreedom: {
|
|
1976
|
+
name: string;
|
|
1977
|
+
detail: string;
|
|
1978
|
+
};
|
|
1979
|
+
cumulative: {
|
|
1920
1980
|
name: string;
|
|
1921
1981
|
detail: string;
|
|
1922
1982
|
};
|
|
@@ -1930,11 +1990,11 @@ declare const _default: {
|
|
|
1930
1990
|
url: string;
|
|
1931
1991
|
}[];
|
|
1932
1992
|
functionParameter: {
|
|
1933
|
-
|
|
1993
|
+
x: {
|
|
1934
1994
|
name: string;
|
|
1935
1995
|
detail: string;
|
|
1936
1996
|
};
|
|
1937
|
-
|
|
1997
|
+
degFreedom: {
|
|
1938
1998
|
name: string;
|
|
1939
1999
|
detail: string;
|
|
1940
2000
|
};
|
|
@@ -1948,11 +2008,11 @@ declare const _default: {
|
|
|
1948
2008
|
url: string;
|
|
1949
2009
|
}[];
|
|
1950
2010
|
functionParameter: {
|
|
1951
|
-
|
|
2011
|
+
x: {
|
|
1952
2012
|
name: string;
|
|
1953
2013
|
detail: string;
|
|
1954
2014
|
};
|
|
1955
|
-
|
|
2015
|
+
degFreedom: {
|
|
1956
2016
|
name: string;
|
|
1957
2017
|
detail: string;
|
|
1958
2018
|
};
|
|
@@ -1966,11 +2026,11 @@ declare const _default: {
|
|
|
1966
2026
|
url: string;
|
|
1967
2027
|
}[];
|
|
1968
2028
|
functionParameter: {
|
|
1969
|
-
|
|
2029
|
+
probability: {
|
|
1970
2030
|
name: string;
|
|
1971
2031
|
detail: string;
|
|
1972
2032
|
};
|
|
1973
|
-
|
|
2033
|
+
degFreedom: {
|
|
1974
2034
|
name: string;
|
|
1975
2035
|
detail: string;
|
|
1976
2036
|
};
|
|
@@ -1984,11 +2044,11 @@ declare const _default: {
|
|
|
1984
2044
|
url: string;
|
|
1985
2045
|
}[];
|
|
1986
2046
|
functionParameter: {
|
|
1987
|
-
|
|
2047
|
+
probability: {
|
|
1988
2048
|
name: string;
|
|
1989
2049
|
detail: string;
|
|
1990
2050
|
};
|
|
1991
|
-
|
|
2051
|
+
degFreedom: {
|
|
1992
2052
|
name: string;
|
|
1993
2053
|
detail: string;
|
|
1994
2054
|
};
|
|
@@ -2002,11 +2062,19 @@ declare const _default: {
|
|
|
2002
2062
|
url: string;
|
|
2003
2063
|
}[];
|
|
2004
2064
|
functionParameter: {
|
|
2005
|
-
|
|
2065
|
+
array1: {
|
|
2006
2066
|
name: string;
|
|
2007
2067
|
detail: string;
|
|
2008
2068
|
};
|
|
2009
|
-
|
|
2069
|
+
array2: {
|
|
2070
|
+
name: string;
|
|
2071
|
+
detail: string;
|
|
2072
|
+
};
|
|
2073
|
+
tails: {
|
|
2074
|
+
name: string;
|
|
2075
|
+
detail: string;
|
|
2076
|
+
};
|
|
2077
|
+
type: {
|
|
2010
2078
|
name: string;
|
|
2011
2079
|
detail: string;
|
|
2012
2080
|
};
|
|
@@ -2038,11 +2106,11 @@ declare const _default: {
|
|
|
2038
2106
|
url: string;
|
|
2039
2107
|
}[];
|
|
2040
2108
|
functionParameter: {
|
|
2041
|
-
|
|
2109
|
+
array: {
|
|
2042
2110
|
name: string;
|
|
2043
2111
|
detail: string;
|
|
2044
2112
|
};
|
|
2045
|
-
|
|
2113
|
+
percent: {
|
|
2046
2114
|
name: string;
|
|
2047
2115
|
detail: string;
|
|
2048
2116
|
};
|
|
@@ -2128,11 +2196,19 @@ declare const _default: {
|
|
|
2128
2196
|
url: string;
|
|
2129
2197
|
}[];
|
|
2130
2198
|
functionParameter: {
|
|
2131
|
-
|
|
2199
|
+
x: {
|
|
2132
2200
|
name: string;
|
|
2133
2201
|
detail: string;
|
|
2134
2202
|
};
|
|
2135
|
-
|
|
2203
|
+
alpha: {
|
|
2204
|
+
name: string;
|
|
2205
|
+
detail: string;
|
|
2206
|
+
};
|
|
2207
|
+
beta: {
|
|
2208
|
+
name: string;
|
|
2209
|
+
detail: string;
|
|
2210
|
+
};
|
|
2211
|
+
cumulative: {
|
|
2136
2212
|
name: string;
|
|
2137
2213
|
detail: string;
|
|
2138
2214
|
};
|
|
@@ -2146,11 +2222,15 @@ declare const _default: {
|
|
|
2146
2222
|
url: string;
|
|
2147
2223
|
}[];
|
|
2148
2224
|
functionParameter: {
|
|
2149
|
-
|
|
2225
|
+
array: {
|
|
2150
2226
|
name: string;
|
|
2151
2227
|
detail: string;
|
|
2152
2228
|
};
|
|
2153
|
-
|
|
2229
|
+
x: {
|
|
2230
|
+
name: string;
|
|
2231
|
+
detail: string;
|
|
2232
|
+
};
|
|
2233
|
+
sigma: {
|
|
2154
2234
|
name: string;
|
|
2155
2235
|
detail: string;
|
|
2156
2236
|
};
|