@univerjs/sheets-formula 0.2.14 → 0.3.0-alpha.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.
Files changed (34) hide show
  1. package/lib/cjs/index.js +3 -3
  2. package/lib/es/index.js +672 -375
  3. package/lib/locale/en-US.json +485 -333
  4. package/lib/locale/ru-RU.json +484 -332
  5. package/lib/locale/vi-VN.json +716 -208
  6. package/lib/locale/zh-CN.json +487 -335
  7. package/lib/locale/zh-TW.json +487 -335
  8. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +1 -1
  9. package/lib/types/controllers/formula-alert-render.controller.d.ts +5 -2
  10. package/lib/types/controllers/prompt.controller.d.ts +2 -1
  11. package/lib/types/controllers/update-formula.controller.d.ts +1 -1
  12. package/lib/types/index.d.ts +1 -1
  13. package/lib/types/locale/en-US.d.ts +265 -113
  14. package/lib/types/locale/function-list/compatibility/en-US.d.ts +96 -40
  15. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +96 -40
  16. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +96 -40
  17. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +96 -40
  18. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +96 -40
  19. package/lib/types/locale/function-list/statistical/en-US.d.ts +161 -69
  20. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +161 -69
  21. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +442 -26
  22. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +161 -69
  23. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +161 -69
  24. package/lib/types/locale/function-list/text/en-US.d.ts +8 -4
  25. package/lib/types/locale/function-list/text/ja-JP.d.ts +8 -4
  26. package/lib/types/locale/function-list/text/ru-RU.d.ts +8 -4
  27. package/lib/types/locale/function-list/text/zh-CN.d.ts +8 -4
  28. package/lib/types/locale/function-list/text/zh-TW.d.ts +8 -4
  29. package/lib/types/locale/ru-RU.d.ts +265 -113
  30. package/lib/types/locale/vi-VN.d.ts +538 -66
  31. package/lib/types/locale/zh-CN.d.ts +265 -113
  32. package/lib/types/locale/zh-TW.d.ts +265 -113
  33. package/lib/umd/index.js +3 -3
  34. package/package.json +26 -29
@@ -3872,13 +3872,29 @@
3872
3872
  }
3873
3873
  ],
3874
3874
  "functionParameter": {
3875
- "number1": {
3876
- "name": "number1",
3877
- "detail": "first"
3875
+ "x": {
3876
+ "name": "x",
3877
+ "detail": "The value between A and B at which to evaluate the function."
3878
3878
  },
3879
- "number2": {
3880
- "name": "number2",
3881
- "detail": "second"
3879
+ "alpha": {
3880
+ "name": "alpha",
3881
+ "detail": "A parameter of the distribution."
3882
+ },
3883
+ "beta": {
3884
+ "name": "beta",
3885
+ "detail": "A parameter of the distribution."
3886
+ },
3887
+ "cumulative": {
3888
+ "name": "cumulative",
3889
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, BETA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
3890
+ },
3891
+ "A": {
3892
+ "name": "A",
3893
+ "detail": "A lower bound to the interval of x."
3894
+ },
3895
+ "B": {
3896
+ "name": "B",
3897
+ "detail": "An upper bound to the interval of x."
3882
3898
  }
3883
3899
  }
3884
3900
  },
@@ -3892,13 +3908,25 @@
3892
3908
  }
3893
3909
  ],
3894
3910
  "functionParameter": {
3895
- "number1": {
3896
- "name": "number1",
3897
- "detail": "first"
3911
+ "probability": {
3912
+ "name": "probability",
3913
+ "detail": "A probability associated with the beta distribution."
3898
3914
  },
3899
- "number2": {
3900
- "name": "number2",
3901
- "detail": "second"
3915
+ "alpha": {
3916
+ "name": "alpha",
3917
+ "detail": "A parameter of the distribution."
3918
+ },
3919
+ "beta": {
3920
+ "name": "beta",
3921
+ "detail": "A parameter of the distribution."
3922
+ },
3923
+ "A": {
3924
+ "name": "A",
3925
+ "detail": "A lower bound to the interval of x."
3926
+ },
3927
+ "B": {
3928
+ "name": "B",
3929
+ "detail": "An upper bound to the interval of x."
3902
3930
  }
3903
3931
  }
3904
3932
  },
@@ -3912,13 +3940,21 @@
3912
3940
  }
3913
3941
  ],
3914
3942
  "functionParameter": {
3915
- "number1": {
3916
- "name": "number1",
3917
- "detail": "first"
3943
+ "numberS": {
3944
+ "name": "number_s",
3945
+ "detail": "The number of successes in trials."
3918
3946
  },
3919
- "number2": {
3920
- "name": "number2",
3921
- "detail": "second"
3947
+ "trials": {
3948
+ "name": "trials",
3949
+ "detail": "The number of independent trials."
3950
+ },
3951
+ "probabilityS": {
3952
+ "name": "probability_s",
3953
+ "detail": "The probability of success on each trial."
3954
+ },
3955
+ "cumulative": {
3956
+ "name": "cumulative",
3957
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, BINOM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
3922
3958
  }
3923
3959
  }
3924
3960
  },
@@ -3932,13 +3968,21 @@
3932
3968
  }
3933
3969
  ],
3934
3970
  "functionParameter": {
3935
- "number1": {
3936
- "name": "number1",
3937
- "detail": "first"
3971
+ "trials": {
3972
+ "name": "trials",
3973
+ "detail": "The number of independent trials."
3938
3974
  },
3939
- "number2": {
3940
- "name": "number2",
3941
- "detail": "second"
3975
+ "probabilityS": {
3976
+ "name": "probability_s",
3977
+ "detail": "The probability of success on each trial."
3978
+ },
3979
+ "numberS": {
3980
+ "name": "number_s",
3981
+ "detail": "The number of successes in trials."
3982
+ },
3983
+ "numberS2": {
3984
+ "name": "number_s2",
3985
+ "detail": "If provided, returns the probability that the number of successful trials will fall between number_s and number_s2."
3942
3986
  }
3943
3987
  }
3944
3988
  },
@@ -3952,19 +3996,23 @@
3952
3996
  }
3953
3997
  ],
3954
3998
  "functionParameter": {
3955
- "number1": {
3956
- "name": "number1",
3957
- "detail": "first"
3999
+ "trials": {
4000
+ "name": "trials",
4001
+ "detail": "The number of Bernoulli trials."
3958
4002
  },
3959
- "number2": {
3960
- "name": "number2",
3961
- "detail": "second"
4003
+ "probabilityS": {
4004
+ "name": "probability_s",
4005
+ "detail": "The probability of success on each trial."
4006
+ },
4007
+ "alpha": {
4008
+ "name": "alpha",
4009
+ "detail": "The criterion value."
3962
4010
  }
3963
4011
  }
3964
4012
  },
3965
4013
  "CHISQ_DIST": {
3966
- "description": "Returns the cumulative beta probability density function",
3967
- "abstract": "Returns the cumulative beta probability density function",
4014
+ "description": "Returns the left-tailed probability of the chi-squared distribution.",
4015
+ "abstract": "Returns the left-tailed probability of the chi-squared distribution.",
3968
4016
  "links": [
3969
4017
  {
3970
4018
  "title": "Instruction",
@@ -3972,19 +4020,23 @@
3972
4020
  }
3973
4021
  ],
3974
4022
  "functionParameter": {
3975
- "number1": {
3976
- "name": "number1",
3977
- "detail": "first"
4023
+ "x": {
4024
+ "name": "x",
4025
+ "detail": "The value at which you want to evaluate the distribution."
3978
4026
  },
3979
- "number2": {
3980
- "name": "number2",
3981
- "detail": "second"
4027
+ "degFreedom": {
4028
+ "name": "deg_freedom",
4029
+ "detail": "The number of degrees of freedom."
4030
+ },
4031
+ "cumulative": {
4032
+ "name": "cumulative",
4033
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
3982
4034
  }
3983
4035
  }
3984
4036
  },
3985
4037
  "CHISQ_DIST_RT": {
3986
- "description": "Returns the one-tailed probability of the chi-squared distribution",
3987
- "abstract": "Returns the one-tailed probability of the chi-squared distribution",
4038
+ "description": "Returns the right-tailed probability of the chi-squared distribution.",
4039
+ "abstract": "Returns the right-tailed probability of the chi-squared distribution.",
3988
4040
  "links": [
3989
4041
  {
3990
4042
  "title": "Instruction",
@@ -3992,19 +4044,19 @@
3992
4044
  }
3993
4045
  ],
3994
4046
  "functionParameter": {
3995
- "number1": {
3996
- "name": "number1",
3997
- "detail": "first"
4047
+ "x": {
4048
+ "name": "x",
4049
+ "detail": "The value at which you want to evaluate the distribution."
3998
4050
  },
3999
- "number2": {
4000
- "name": "number2",
4001
- "detail": "second"
4051
+ "degFreedom": {
4052
+ "name": "deg_freedom",
4053
+ "detail": "The number of degrees of freedom."
4002
4054
  }
4003
4055
  }
4004
4056
  },
4005
4057
  "CHISQ_INV": {
4006
- "description": "Returns the cumulative beta probability density function",
4007
- "abstract": "Returns the cumulative beta probability density function",
4058
+ "description": "Returns the inverse of the left-tailed probability of the chi-squared distribution.",
4059
+ "abstract": "Returns the inverse of the left-tailed probability of the chi-squared distribution.",
4008
4060
  "links": [
4009
4061
  {
4010
4062
  "title": "Instruction",
@@ -4012,19 +4064,19 @@
4012
4064
  }
4013
4065
  ],
4014
4066
  "functionParameter": {
4015
- "number1": {
4016
- "name": "number1",
4017
- "detail": "first"
4067
+ "probability": {
4068
+ "name": "probability",
4069
+ "detail": "A probability associated with the chi-squared distribution."
4018
4070
  },
4019
- "number2": {
4020
- "name": "number2",
4021
- "detail": "second"
4071
+ "degFreedom": {
4072
+ "name": "deg_freedom",
4073
+ "detail": "The number of degrees of freedom."
4022
4074
  }
4023
4075
  }
4024
4076
  },
4025
4077
  "CHISQ_INV_RT": {
4026
- "description": "Returns the inverse of the one-tailed probability of the chi-squared distribution",
4027
- "abstract": "Returns the inverse of the one-tailed probability of the chi-squared distribution",
4078
+ "description": "Returns the inverse of the right-tailed probability of the chi-squared distribution.",
4079
+ "abstract": "Returns the inverse of the right-tailed probability of the chi-squared distribution.",
4028
4080
  "links": [
4029
4081
  {
4030
4082
  "title": "Instruction",
@@ -4032,13 +4084,13 @@
4032
4084
  }
4033
4085
  ],
4034
4086
  "functionParameter": {
4035
- "number1": {
4036
- "name": "number1",
4037
- "detail": "first"
4087
+ "probability": {
4088
+ "name": "probability",
4089
+ "detail": "A probability associated with the chi-squared distribution."
4038
4090
  },
4039
- "number2": {
4040
- "name": "number2",
4041
- "detail": "second"
4091
+ "degFreedom": {
4092
+ "name": "deg_freedom",
4093
+ "detail": "The number of degrees of freedom."
4042
4094
  }
4043
4095
  }
4044
4096
  },
@@ -4052,19 +4104,19 @@
4052
4104
  }
4053
4105
  ],
4054
4106
  "functionParameter": {
4055
- "number1": {
4056
- "name": "number1",
4057
- "detail": "first"
4107
+ "actualRange": {
4108
+ "name": "actual_range",
4109
+ "detail": "The range of data that contains observations to test against expected values."
4058
4110
  },
4059
- "number2": {
4060
- "name": "number2",
4061
- "detail": "second"
4111
+ "expectedRange": {
4112
+ "name": "expected_range",
4113
+ "detail": "The range of data that contains the ratio of the product of row totals and column totals to the grand total."
4062
4114
  }
4063
4115
  }
4064
4116
  },
4065
4117
  "CONFIDENCE_NORM": {
4066
- "description": "Returns the confidence interval for a population mean",
4067
- "abstract": "Returns the confidence interval for a population mean",
4118
+ "description": "Returns the confidence interval for a population mean, using a normal distribution.",
4119
+ "abstract": "Returns the confidence interval for a population mean, using a normal distribution.",
4068
4120
  "links": [
4069
4121
  {
4070
4122
  "title": "Instruction",
@@ -4072,13 +4124,17 @@
4072
4124
  }
4073
4125
  ],
4074
4126
  "functionParameter": {
4075
- "number1": {
4076
- "name": "number1",
4077
- "detail": "first"
4127
+ "alpha": {
4128
+ "name": "alpha",
4129
+ "detail": "The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."
4078
4130
  },
4079
- "number2": {
4080
- "name": "number2",
4081
- "detail": "second"
4131
+ "standardDev": {
4132
+ "name": "standard_dev",
4133
+ "detail": "The population standard deviation for the data range and is assumed to be known."
4134
+ },
4135
+ "size": {
4136
+ "name": "size",
4137
+ "detail": "The sample size."
4082
4138
  }
4083
4139
  }
4084
4140
  },
@@ -4092,13 +4148,17 @@
4092
4148
  }
4093
4149
  ],
4094
4150
  "functionParameter": {
4095
- "number1": {
4096
- "name": "number1",
4097
- "detail": "first"
4151
+ "alpha": {
4152
+ "name": "alpha",
4153
+ "detail": "The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."
4098
4154
  },
4099
- "number2": {
4100
- "name": "number2",
4101
- "detail": "second"
4155
+ "standardDev": {
4156
+ "name": "standard_dev",
4157
+ "detail": "The population standard deviation for the data range and is assumed to be known."
4158
+ },
4159
+ "size": {
4160
+ "name": "size",
4161
+ "detail": "The sample size."
4102
4162
  }
4103
4163
  }
4104
4164
  },
@@ -4112,13 +4172,13 @@
4112
4172
  }
4113
4173
  ],
4114
4174
  "functionParameter": {
4115
- "number1": {
4116
- "name": "number1",
4117
- "detail": "first"
4175
+ "array1": {
4176
+ "name": "array1",
4177
+ "detail": "A first range of cell values."
4118
4178
  },
4119
- "number2": {
4120
- "name": "number2",
4121
- "detail": "second"
4179
+ "array2": {
4180
+ "name": "array2",
4181
+ "detail": "A second range of cell values."
4122
4182
  }
4123
4183
  }
4124
4184
  },
@@ -4227,8 +4287,8 @@
4227
4287
  }
4228
4288
  },
4229
4289
  "COVARIANCE_P": {
4230
- "description": "Returns covariance, the average of the products of paired deviations",
4231
- "abstract": "Returns covariance, the average of the products of paired deviations",
4290
+ "description": "Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",
4291
+ "abstract": "Returns population covariance",
4232
4292
  "links": [
4233
4293
  {
4234
4294
  "title": "Instruction",
@@ -4236,19 +4296,19 @@
4236
4296
  }
4237
4297
  ],
4238
4298
  "functionParameter": {
4239
- "number1": {
4240
- "name": "number1",
4241
- "detail": "first"
4299
+ "array1": {
4300
+ "name": "array1",
4301
+ "detail": "A first range of cell values."
4242
4302
  },
4243
- "number2": {
4244
- "name": "number2",
4245
- "detail": "second"
4303
+ "array2": {
4304
+ "name": "array2",
4305
+ "detail": "A second range of cell values."
4246
4306
  }
4247
4307
  }
4248
4308
  },
4249
4309
  "COVARIANCE_S": {
4250
- "description": "Returns the sample covariance, the average of the products deviations for each data point pair in two data sets",
4251
- "abstract": "Returns the sample covariance, the average of the products deviations for each data point pair in two data sets",
4310
+ "description": "Returns the sample covariance, the average of the products of deviations for each data point pair in two data sets.",
4311
+ "abstract": "Returns the sample covariance",
4252
4312
  "links": [
4253
4313
  {
4254
4314
  "title": "Instruction",
@@ -4256,13 +4316,13 @@
4256
4316
  }
4257
4317
  ],
4258
4318
  "functionParameter": {
4259
- "number1": {
4260
- "name": "number1",
4261
- "detail": "first"
4319
+ "array1": {
4320
+ "name": "array1",
4321
+ "detail": "A first range of cell values."
4262
4322
  },
4263
- "number2": {
4264
- "name": "number2",
4265
- "detail": "second"
4323
+ "array2": {
4324
+ "name": "array2",
4325
+ "detail": "A second range of cell values."
4266
4326
  }
4267
4327
  }
4268
4328
  },
@@ -4278,11 +4338,11 @@
4278
4338
  "functionParameter": {
4279
4339
  "number1": {
4280
4340
  "name": "number1",
4281
- "detail": "first"
4341
+ "detail": "The fist argument for which you want to calculate the sum of squared deviations."
4282
4342
  },
4283
4343
  "number2": {
4284
4344
  "name": "number2",
4285
- "detail": "second"
4345
+ "detail": "The 2 to 255 arguments for which you want to calculate the sum of squared deviations."
4286
4346
  }
4287
4347
  }
4288
4348
  },
@@ -4296,13 +4356,17 @@
4296
4356
  }
4297
4357
  ],
4298
4358
  "functionParameter": {
4299
- "number1": {
4300
- "name": "number1",
4301
- "detail": "first"
4359
+ "x": {
4360
+ "name": "x",
4361
+ "detail": "The value at which you want to evaluate the distribution."
4302
4362
  },
4303
- "number2": {
4304
- "name": "number2",
4305
- "detail": "second"
4363
+ "lambda": {
4364
+ "name": "lambda",
4365
+ "detail": "The parameter value."
4366
+ },
4367
+ "cumulative": {
4368
+ "name": "cumulative",
4369
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, EXPON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
4306
4370
  }
4307
4371
  }
4308
4372
  },
@@ -4316,19 +4380,27 @@
4316
4380
  }
4317
4381
  ],
4318
4382
  "functionParameter": {
4319
- "number1": {
4320
- "name": "number1",
4321
- "detail": "first"
4383
+ "x": {
4384
+ "name": "x",
4385
+ "detail": "The value at which to evaluate the function."
4322
4386
  },
4323
- "number2": {
4324
- "name": "number2",
4325
- "detail": "second"
4387
+ "degFreedom1": {
4388
+ "name": "deg_freedom1",
4389
+ "detail": "The numerator degrees of freedom."
4390
+ },
4391
+ "degFreedom2": {
4392
+ "name": "deg_freedom2",
4393
+ "detail": "The denominator degrees of freedom."
4394
+ },
4395
+ "cumulative": {
4396
+ "name": "cumulative",
4397
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, F.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
4326
4398
  }
4327
4399
  }
4328
4400
  },
4329
4401
  "F_DIST_RT": {
4330
- "description": "Returns the F probability distribution",
4331
- "abstract": "Returns the F probability distribution",
4402
+ "description": "Returns the (right-tailed) F probability distribution",
4403
+ "abstract": "Returns the (right-tailed) F probability distribution",
4332
4404
  "links": [
4333
4405
  {
4334
4406
  "title": "Instruction",
@@ -4336,13 +4408,17 @@
4336
4408
  }
4337
4409
  ],
4338
4410
  "functionParameter": {
4339
- "number1": {
4340
- "name": "number1",
4341
- "detail": "first"
4411
+ "x": {
4412
+ "name": "x",
4413
+ "detail": "The value at which to evaluate the function."
4342
4414
  },
4343
- "number2": {
4344
- "name": "number2",
4345
- "detail": "second"
4415
+ "degFreedom1": {
4416
+ "name": "deg_freedom1",
4417
+ "detail": "The numerator degrees of freedom."
4418
+ },
4419
+ "degFreedom2": {
4420
+ "name": "deg_freedom2",
4421
+ "detail": "The denominator degrees of freedom."
4346
4422
  }
4347
4423
  }
4348
4424
  },
@@ -4356,19 +4432,23 @@
4356
4432
  }
4357
4433
  ],
4358
4434
  "functionParameter": {
4359
- "number1": {
4360
- "name": "number1",
4361
- "detail": "first"
4435
+ "probability": {
4436
+ "name": "probability",
4437
+ "detail": "A probability associated with the F cumulative distribution."
4362
4438
  },
4363
- "number2": {
4364
- "name": "number2",
4365
- "detail": "second"
4439
+ "degFreedom1": {
4440
+ "name": "deg_freedom1",
4441
+ "detail": "The numerator degrees of freedom."
4442
+ },
4443
+ "degFreedom2": {
4444
+ "name": "deg_freedom2",
4445
+ "detail": "The denominator degrees of freedom."
4366
4446
  }
4367
4447
  }
4368
4448
  },
4369
4449
  "F_INV_RT": {
4370
- "description": "Returns the inverse of the F probability distribution",
4371
- "abstract": "Returns the inverse of the F probability distribution",
4450
+ "description": "Returns the inverse of the (right-tailed) F probability distribution",
4451
+ "abstract": "Returns the inverse of the (right-tailed) F probability distribution",
4372
4452
  "links": [
4373
4453
  {
4374
4454
  "title": "Instruction",
@@ -4376,13 +4456,17 @@
4376
4456
  }
4377
4457
  ],
4378
4458
  "functionParameter": {
4379
- "number1": {
4380
- "name": "number1",
4381
- "detail": "first"
4459
+ "probability": {
4460
+ "name": "probability",
4461
+ "detail": "A probability associated with the F cumulative distribution."
4382
4462
  },
4383
- "number2": {
4384
- "name": "number2",
4385
- "detail": "second"
4463
+ "degFreedom1": {
4464
+ "name": "deg_freedom1",
4465
+ "detail": "The numerator degrees of freedom."
4466
+ },
4467
+ "degFreedom2": {
4468
+ "name": "deg_freedom2",
4469
+ "detail": "The denominator degrees of freedom."
4386
4470
  }
4387
4471
  }
4388
4472
  },
@@ -4396,13 +4480,13 @@
4396
4480
  }
4397
4481
  ],
4398
4482
  "functionParameter": {
4399
- "number1": {
4400
- "name": "number1",
4401
- "detail": "first"
4483
+ "array1": {
4484
+ "name": "array1",
4485
+ "detail": "The first array or range of data."
4402
4486
  },
4403
- "number2": {
4404
- "name": "number2",
4405
- "detail": "second"
4487
+ "array2": {
4488
+ "name": "array2",
4489
+ "detail": "The second array or range of data."
4406
4490
  }
4407
4491
  }
4408
4492
  },
@@ -4416,13 +4500,9 @@
4416
4500
  }
4417
4501
  ],
4418
4502
  "functionParameter": {
4419
- "number1": {
4420
- "name": "number1",
4421
- "detail": "first"
4422
- },
4423
- "number2": {
4424
- "name": "number2",
4425
- "detail": "second"
4503
+ "x": {
4504
+ "name": "x",
4505
+ "detail": "A numeric value for which you want the transformation."
4426
4506
  }
4427
4507
  }
4428
4508
  },
@@ -4436,13 +4516,9 @@
4436
4516
  }
4437
4517
  ],
4438
4518
  "functionParameter": {
4439
- "number1": {
4440
- "name": "number1",
4441
- "detail": "first"
4442
- },
4443
- "number2": {
4444
- "name": "number2",
4445
- "detail": "second"
4519
+ "y": {
4520
+ "name": "y",
4521
+ "detail": "The value for which you want to perform the inverse of the transformation."
4446
4522
  }
4447
4523
  }
4448
4524
  },
@@ -4456,13 +4532,17 @@
4456
4532
  }
4457
4533
  ],
4458
4534
  "functionParameter": {
4459
- "number1": {
4460
- "name": "number1",
4461
- "detail": "first"
4535
+ "x": {
4536
+ "name": "x",
4537
+ "detail": "The data point for which you want to predict a value."
4462
4538
  },
4463
- "number2": {
4464
- "name": "number2",
4465
- "detail": "second"
4539
+ "knownYs": {
4540
+ "name": "known_y's",
4541
+ "detail": "The dependent array or range of data."
4542
+ },
4543
+ "knownXs": {
4544
+ "name": "known_x's",
4545
+ "detail": "The independent array or range of data."
4466
4546
  }
4467
4547
  }
4468
4548
  },
@@ -4552,17 +4632,21 @@
4552
4632
  "links": [
4553
4633
  {
4554
4634
  "title": "Instruction",
4555
- "url": "https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e#_FORECAST.LINEAR"
4635
+ "url": "https://support.microsoft.com/en-us/office/forecast-and-forecast-linear-functions-50ca49c9-7b40-4892-94e4-7ad38bbeda99"
4556
4636
  }
4557
4637
  ],
4558
4638
  "functionParameter": {
4559
- "number1": {
4560
- "name": "number1",
4561
- "detail": "first"
4639
+ "x": {
4640
+ "name": "x",
4641
+ "detail": "The data point for which you want to predict a value."
4562
4642
  },
4563
- "number2": {
4564
- "name": "number2",
4565
- "detail": "second"
4643
+ "knownYs": {
4644
+ "name": "known_y's",
4645
+ "detail": "The dependent array or range of data."
4646
+ },
4647
+ "knownXs": {
4648
+ "name": "known_x's",
4649
+ "detail": "The independent array or range of data."
4566
4650
  }
4567
4651
  }
4568
4652
  },
@@ -4796,13 +4880,13 @@
4796
4880
  }
4797
4881
  ],
4798
4882
  "functionParameter": {
4799
- "number1": {
4800
- "name": "number1",
4801
- "detail": "first"
4883
+ "knownYs": {
4884
+ "name": "known_y's",
4885
+ "detail": "The dependent array or range of data."
4802
4886
  },
4803
- "number2": {
4804
- "name": "number2",
4805
- "detail": "second"
4887
+ "knownXs": {
4888
+ "name": "known_x's",
4889
+ "detail": "The independent array or range of data."
4806
4890
  }
4807
4891
  }
4808
4892
  },
@@ -5160,13 +5244,21 @@
5160
5244
  }
5161
5245
  ],
5162
5246
  "functionParameter": {
5163
- "number1": {
5164
- "name": "number1",
5165
- "detail": "first"
5247
+ "x": {
5248
+ "name": "x",
5249
+ "detail": "The value for which you want the distribution."
5166
5250
  },
5167
- "number2": {
5168
- "name": "number2",
5169
- "detail": "second"
5251
+ "mean": {
5252
+ "name": "mean",
5253
+ "detail": "The arithmetic mean of the distribution."
5254
+ },
5255
+ "standardDev": {
5256
+ "name": "standard_dev",
5257
+ "detail": "The standard deviation of the distribution."
5258
+ },
5259
+ "cumulative": {
5260
+ "name": "cumulative",
5261
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
5170
5262
  }
5171
5263
  }
5172
5264
  },
@@ -5180,13 +5272,17 @@
5180
5272
  }
5181
5273
  ],
5182
5274
  "functionParameter": {
5183
- "number1": {
5184
- "name": "number1",
5185
- "detail": "first"
5275
+ "probability": {
5276
+ "name": "probability",
5277
+ "detail": "A probability corresponding to the normal distribution."
5186
5278
  },
5187
- "number2": {
5188
- "name": "number2",
5189
- "detail": "second"
5279
+ "mean": {
5280
+ "name": "mean",
5281
+ "detail": "The arithmetic mean of the distribution."
5282
+ },
5283
+ "standardDev": {
5284
+ "name": "standard_dev",
5285
+ "detail": "The standard deviation of the distribution."
5190
5286
  }
5191
5287
  }
5192
5288
  },
@@ -5200,13 +5296,13 @@
5200
5296
  }
5201
5297
  ],
5202
5298
  "functionParameter": {
5203
- "number1": {
5204
- "name": "number1",
5205
- "detail": "first"
5299
+ "z": {
5300
+ "name": "z",
5301
+ "detail": "The value for which you want the distribution."
5206
5302
  },
5207
- "number2": {
5208
- "name": "number2",
5209
- "detail": "second"
5303
+ "cumulative": {
5304
+ "name": "cumulative",
5305
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
5210
5306
  }
5211
5307
  }
5212
5308
  },
@@ -5220,13 +5316,9 @@
5220
5316
  }
5221
5317
  ],
5222
5318
  "functionParameter": {
5223
- "number1": {
5224
- "name": "number1",
5225
- "detail": "first"
5226
- },
5227
- "number2": {
5228
- "name": "number2",
5229
- "detail": "second"
5319
+ "probability": {
5320
+ "name": "probability",
5321
+ "detail": "A probability corresponding to the normal distribution."
5230
5322
  }
5231
5323
  }
5232
5324
  },
@@ -7436,13 +7528,13 @@
7436
7528
  }
7437
7529
  ],
7438
7530
  "functionParameter": {
7439
- "number1": {
7440
- "name": "number1",
7441
- "detail": "first"
7531
+ "text": {
7532
+ "name": "text",
7533
+ "detail": "The text string that contains the characters you want to extract."
7442
7534
  },
7443
- "number2": {
7444
- "name": "number2",
7445
- "detail": "second"
7535
+ "numBytes": {
7536
+ "name": "num_bytes",
7537
+ "detail": "Specifies the number of characters you want LEFTB to extract, based on bytes."
7446
7538
  }
7447
7539
  }
7448
7540
  },
@@ -7495,7 +7587,7 @@
7495
7587
  }
7496
7588
  },
7497
7589
  "MID": {
7498
- "description": "Returns a specific number of characters from a text string starting at the position you specify",
7590
+ "description": "Returns a specific number of characters from a text string starting at the position you specify.",
7499
7591
  "abstract": "Returns a specific number of characters from a text string starting at the position you specify",
7500
7592
  "links": [
7501
7593
  {
@@ -7504,13 +7596,17 @@
7504
7596
  }
7505
7597
  ],
7506
7598
  "functionParameter": {
7507
- "number1": {
7508
- "name": "number1",
7509
- "detail": "first"
7599
+ "text": {
7600
+ "name": "text",
7601
+ "detail": "The text string containing the characters you want to extract."
7510
7602
  },
7511
- "number2": {
7512
- "name": "number2",
7513
- "detail": "second"
7603
+ "startNum": {
7604
+ "name": "start_num",
7605
+ "detail": "The position of the first character you want to extract in text. The first character in text has start_num 1, and so on.\nIf start_num is greater than the length of text, MID/MIDB returns \"\" (empty text).\nIf start_num is less than the length of text, but start_num plus num_chars exceeds the length of text, MID/MIDB returns the characters up to the end of text.\nIf start_num is less than 1, MID/MIDB returns the #VALUE! error value."
7606
+ },
7607
+ "numChars": {
7608
+ "name": "num_chars",
7609
+ "detail": "Specifies the number of characters you want MID to return from text.\nIf num_chars is negative, MID returns the #VALUE! error value."
7514
7610
  }
7515
7611
  }
7516
7612
  },
@@ -9965,13 +10061,25 @@
9965
10061
  }
9966
10062
  ],
9967
10063
  "functionParameter": {
9968
- "number1": {
9969
- "name": "number1",
9970
- "detail": "first"
10064
+ "x": {
10065
+ "name": "x",
10066
+ "detail": "The value between A and B at which to evaluate the function."
9971
10067
  },
9972
- "number2": {
9973
- "name": "number2",
9974
- "detail": "second"
10068
+ "alpha": {
10069
+ "name": "alpha",
10070
+ "detail": "A parameter of the distribution."
10071
+ },
10072
+ "beta": {
10073
+ "name": "beta",
10074
+ "detail": "A parameter of the distribution."
10075
+ },
10076
+ "A": {
10077
+ "name": "A",
10078
+ "detail": "A lower bound to the interval of x."
10079
+ },
10080
+ "B": {
10081
+ "name": "B",
10082
+ "detail": "An upper bound to the interval of x."
9975
10083
  }
9976
10084
  }
9977
10085
  },
@@ -9985,13 +10093,25 @@
9985
10093
  }
9986
10094
  ],
9987
10095
  "functionParameter": {
9988
- "number1": {
9989
- "name": "number1",
9990
- "detail": "first"
10096
+ "probability": {
10097
+ "name": "probability",
10098
+ "detail": "A probability associated with the beta distribution."
9991
10099
  },
9992
- "number2": {
9993
- "name": "number2",
9994
- "detail": "second"
10100
+ "alpha": {
10101
+ "name": "alpha",
10102
+ "detail": "A parameter of the distribution."
10103
+ },
10104
+ "beta": {
10105
+ "name": "beta",
10106
+ "detail": "A parameter of the distribution."
10107
+ },
10108
+ "A": {
10109
+ "name": "A",
10110
+ "detail": "A lower bound to the interval of x."
10111
+ },
10112
+ "B": {
10113
+ "name": "B",
10114
+ "detail": "An upper bound to the interval of x."
9995
10115
  }
9996
10116
  }
9997
10117
  },
@@ -10005,19 +10125,27 @@
10005
10125
  }
10006
10126
  ],
10007
10127
  "functionParameter": {
10008
- "number1": {
10009
- "name": "number1",
10010
- "detail": "first"
10128
+ "numberS": {
10129
+ "name": "number_s",
10130
+ "detail": "The number of successes in trials."
10011
10131
  },
10012
- "number2": {
10013
- "name": "number2",
10014
- "detail": "second"
10132
+ "trials": {
10133
+ "name": "trials",
10134
+ "detail": "The number of independent trials."
10135
+ },
10136
+ "probabilityS": {
10137
+ "name": "probability_s",
10138
+ "detail": "The probability of success on each trial."
10139
+ },
10140
+ "cumulative": {
10141
+ "name": "cumulative",
10142
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
10015
10143
  }
10016
10144
  }
10017
10145
  },
10018
10146
  "CHIDIST": {
10019
- "description": "Returns the one-tailed probability of the chi-squared distribution",
10020
- "abstract": "Returns the one-tailed probability of the chi-squared distribution",
10147
+ "description": "Returns the right-tailed probability of the chi-squared distribution.",
10148
+ "abstract": "Returns the right-tailed probability of the chi-squared distribution.",
10021
10149
  "links": [
10022
10150
  {
10023
10151
  "title": "Instruction",
@@ -10025,19 +10153,19 @@
10025
10153
  }
10026
10154
  ],
10027
10155
  "functionParameter": {
10028
- "number1": {
10029
- "name": "number1",
10030
- "detail": "first"
10156
+ "x": {
10157
+ "name": "x",
10158
+ "detail": "The value at which you want to evaluate the distribution."
10031
10159
  },
10032
- "number2": {
10033
- "name": "number2",
10034
- "detail": "second"
10160
+ "degFreedom": {
10161
+ "name": "deg_freedom",
10162
+ "detail": "The number of degrees of freedom."
10035
10163
  }
10036
10164
  }
10037
10165
  },
10038
10166
  "CHIINV": {
10039
- "description": "Returns the inverse of the one-tailed probability of the chi-squared distribution",
10040
- "abstract": "Returns the inverse of the one-tailed probability of the chi-squared distribution",
10167
+ "description": "Returns the inverse of the right-tailed probability of the chi-squared distribution.",
10168
+ "abstract": "Returns the inverse of the right-tailed probability of the chi-squared distribution.",
10041
10169
  "links": [
10042
10170
  {
10043
10171
  "title": "Instruction",
@@ -10045,13 +10173,13 @@
10045
10173
  }
10046
10174
  ],
10047
10175
  "functionParameter": {
10048
- "number1": {
10049
- "name": "number1",
10050
- "detail": "first"
10176
+ "probability": {
10177
+ "name": "probability",
10178
+ "detail": "A probability associated with the chi-squared distribution."
10051
10179
  },
10052
- "number2": {
10053
- "name": "number2",
10054
- "detail": "second"
10180
+ "degFreedom": {
10181
+ "name": "deg_freedom",
10182
+ "detail": "The number of degrees of freedom."
10055
10183
  }
10056
10184
  }
10057
10185
  },
@@ -10065,19 +10193,19 @@
10065
10193
  }
10066
10194
  ],
10067
10195
  "functionParameter": {
10068
- "number1": {
10069
- "name": "number1",
10070
- "detail": "first"
10196
+ "actualRange": {
10197
+ "name": "actual_range",
10198
+ "detail": "The range of data that contains observations to test against expected values."
10071
10199
  },
10072
- "number2": {
10073
- "name": "number2",
10074
- "detail": "second"
10200
+ "expectedRange": {
10201
+ "name": "expected_range",
10202
+ "detail": "The range of data that contains the ratio of the product of row totals and column totals to the grand total."
10075
10203
  }
10076
10204
  }
10077
10205
  },
10078
10206
  "CONFIDENCE": {
10079
- "description": "Returns the confidence interval for a population mean",
10080
- "abstract": "Returns the confidence interval for a population mean",
10207
+ "description": "Returns the confidence interval for a population mean, using a normal distribution.",
10208
+ "abstract": "Returns the confidence interval for a population mean, using a normal distribution.",
10081
10209
  "links": [
10082
10210
  {
10083
10211
  "title": "Instruction",
@@ -10085,19 +10213,23 @@
10085
10213
  }
10086
10214
  ],
10087
10215
  "functionParameter": {
10088
- "number1": {
10089
- "name": "number1",
10090
- "detail": "first"
10216
+ "alpha": {
10217
+ "name": "alpha",
10218
+ "detail": "The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."
10091
10219
  },
10092
- "number2": {
10093
- "name": "number2",
10094
- "detail": "second"
10220
+ "standardDev": {
10221
+ "name": "standard_dev",
10222
+ "detail": "The population standard deviation for the data range and is assumed to be known."
10223
+ },
10224
+ "size": {
10225
+ "name": "size",
10226
+ "detail": "The sample size."
10095
10227
  }
10096
10228
  }
10097
10229
  },
10098
10230
  "COVAR": {
10099
- "description": "Returns covariance, the average of the products of paired deviations",
10100
- "abstract": "Returns covariance, the average of the products of paired deviations",
10231
+ "description": "Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",
10232
+ "abstract": "Returns population covariance",
10101
10233
  "links": [
10102
10234
  {
10103
10235
  "title": "Instruction",
@@ -10105,13 +10237,13 @@
10105
10237
  }
10106
10238
  ],
10107
10239
  "functionParameter": {
10108
- "number1": {
10109
- "name": "number1",
10110
- "detail": "first"
10240
+ "array1": {
10241
+ "name": "array1",
10242
+ "detail": "A first range of cell values."
10111
10243
  },
10112
- "number2": {
10113
- "name": "number2",
10114
- "detail": "second"
10244
+ "array2": {
10245
+ "name": "array2",
10246
+ "detail": "A second range of cell values."
10115
10247
  }
10116
10248
  }
10117
10249
  },
@@ -10125,13 +10257,17 @@
10125
10257
  }
10126
10258
  ],
10127
10259
  "functionParameter": {
10128
- "number1": {
10129
- "name": "number1",
10130
- "detail": "first"
10260
+ "trials": {
10261
+ "name": "trials",
10262
+ "detail": "The number of Bernoulli trials."
10131
10263
  },
10132
- "number2": {
10133
- "name": "number2",
10134
- "detail": "second"
10264
+ "probabilityS": {
10265
+ "name": "probability_s",
10266
+ "detail": "The probability of success on each trial."
10267
+ },
10268
+ "alpha": {
10269
+ "name": "alpha",
10270
+ "detail": "The criterion value."
10135
10271
  }
10136
10272
  }
10137
10273
  },
@@ -10145,19 +10281,23 @@
10145
10281
  }
10146
10282
  ],
10147
10283
  "functionParameter": {
10148
- "number1": {
10149
- "name": "number1",
10150
- "detail": "first"
10284
+ "x": {
10285
+ "name": "x",
10286
+ "detail": "The value at which you want to evaluate the distribution."
10151
10287
  },
10152
- "number2": {
10153
- "name": "number2",
10154
- "detail": "second"
10288
+ "lambda": {
10289
+ "name": "lambda",
10290
+ "detail": "The parameter value."
10291
+ },
10292
+ "cumulative": {
10293
+ "name": "cumulative",
10294
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
10155
10295
  }
10156
10296
  }
10157
10297
  },
10158
10298
  "FDIST": {
10159
- "description": "Returns the F probability distribution",
10160
- "abstract": "Returns the F probability distribution",
10299
+ "description": "Returns the (right-tailed) F probability distribution",
10300
+ "abstract": "Returns the (right-tailed) F probability distribution",
10161
10301
  "links": [
10162
10302
  {
10163
10303
  "title": "Instruction",
@@ -10165,19 +10305,23 @@
10165
10305
  }
10166
10306
  ],
10167
10307
  "functionParameter": {
10168
- "number1": {
10169
- "name": "number1",
10170
- "detail": "first"
10308
+ "x": {
10309
+ "name": "x",
10310
+ "detail": "The value at which to evaluate the function."
10171
10311
  },
10172
- "number2": {
10173
- "name": "number2",
10174
- "detail": "second"
10312
+ "degFreedom1": {
10313
+ "name": "deg_freedom1",
10314
+ "detail": "The numerator degrees of freedom."
10315
+ },
10316
+ "degFreedom2": {
10317
+ "name": "deg_freedom2",
10318
+ "detail": "The denominator degrees of freedom."
10175
10319
  }
10176
10320
  }
10177
10321
  },
10178
10322
  "FINV": {
10179
- "description": "Returns the inverse of the F probability distribution",
10180
- "abstract": "Returns the inverse of the F probability distribution",
10323
+ "description": "Returns the inverse of the (right-tailed) F probability distribution",
10324
+ "abstract": "Returns the inverse of the (right-tailed) F probability distribution",
10181
10325
  "links": [
10182
10326
  {
10183
10327
  "title": "Instruction",
@@ -10185,13 +10329,17 @@
10185
10329
  }
10186
10330
  ],
10187
10331
  "functionParameter": {
10188
- "number1": {
10189
- "name": "number1",
10190
- "detail": "first"
10332
+ "probability": {
10333
+ "name": "probability",
10334
+ "detail": "A probability associated with the F cumulative distribution."
10191
10335
  },
10192
- "number2": {
10193
- "name": "number2",
10194
- "detail": "second"
10336
+ "degFreedom1": {
10337
+ "name": "deg_freedom1",
10338
+ "detail": "The numerator degrees of freedom."
10339
+ },
10340
+ "degFreedom2": {
10341
+ "name": "deg_freedom2",
10342
+ "detail": "The denominator degrees of freedom."
10195
10343
  }
10196
10344
  }
10197
10345
  },
@@ -10205,13 +10353,13 @@
10205
10353
  }
10206
10354
  ],
10207
10355
  "functionParameter": {
10208
- "number1": {
10209
- "name": "number1",
10210
- "detail": "first"
10356
+ "array1": {
10357
+ "name": "array1",
10358
+ "detail": "The first array or range of data."
10211
10359
  },
10212
- "number2": {
10213
- "name": "number2",
10214
- "detail": "second"
10360
+ "array2": {
10361
+ "name": "array2",
10362
+ "detail": "The second array or range of data."
10215
10363
  }
10216
10364
  }
10217
10365
  },
@@ -10365,13 +10513,21 @@
10365
10513
  }
10366
10514
  ],
10367
10515
  "functionParameter": {
10368
- "number1": {
10369
- "name": "number1",
10370
- "detail": "first"
10516
+ "x": {
10517
+ "name": "x",
10518
+ "detail": "The value for which you want the distribution."
10371
10519
  },
10372
- "number2": {
10373
- "name": "number2",
10374
- "detail": "second"
10520
+ "mean": {
10521
+ "name": "mean",
10522
+ "detail": "The arithmetic mean of the distribution."
10523
+ },
10524
+ "standardDev": {
10525
+ "name": "standard_dev",
10526
+ "detail": "The standard deviation of the distribution."
10527
+ },
10528
+ "cumulative": {
10529
+ "name": "cumulative",
10530
+ "detail": "A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."
10375
10531
  }
10376
10532
  }
10377
10533
  },
@@ -10385,13 +10541,17 @@
10385
10541
  }
10386
10542
  ],
10387
10543
  "functionParameter": {
10388
- "number1": {
10389
- "name": "number1",
10390
- "detail": "first"
10544
+ "probability": {
10545
+ "name": "probability",
10546
+ "detail": "A probability corresponding to the normal distribution."
10391
10547
  },
10392
- "number2": {
10393
- "name": "number2",
10394
- "detail": "second"
10548
+ "mean": {
10549
+ "name": "mean",
10550
+ "detail": "The arithmetic mean of the distribution."
10551
+ },
10552
+ "standardDev": {
10553
+ "name": "standard_dev",
10554
+ "detail": "The standard deviation of the distribution."
10395
10555
  }
10396
10556
  }
10397
10557
  },
@@ -10405,13 +10565,9 @@
10405
10565
  }
10406
10566
  ],
10407
10567
  "functionParameter": {
10408
- "number1": {
10409
- "name": "number1",
10410
- "detail": "first"
10411
- },
10412
- "number2": {
10413
- "name": "number2",
10414
- "detail": "second"
10568
+ "z": {
10569
+ "name": "z",
10570
+ "detail": "The value for which you want the distribution."
10415
10571
  }
10416
10572
  }
10417
10573
  },
@@ -10425,13 +10581,9 @@
10425
10581
  }
10426
10582
  ],
10427
10583
  "functionParameter": {
10428
- "number1": {
10429
- "name": "number1",
10430
- "detail": "first"
10431
- },
10432
- "number2": {
10433
- "name": "number2",
10434
- "detail": "second"
10584
+ "probability": {
10585
+ "name": "probability",
10586
+ "detail": "A probability corresponding to the normal distribution."
10435
10587
  }
10436
10588
  }
10437
10589
  },