qesuite 1.0.64 → 1.0.67

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/dist/index.d.mts CHANGED
@@ -503,7 +503,8 @@ declare const Beta: {
503
503
  * @param a The first shape parameter; x^(a-1).
504
504
  * @param b The second shape parameter; (1 - x)^(b-1).
505
505
  */
506
- inc(x: number, a: number, b: number): number;
506
+ inc(X: number, A: number, B: number): number;
507
+ incomplete(x: any, a: any, b: any): any;
507
508
  /**
508
509
  * Evaluates the regularized incomplete beta function of x for the beta function with specified shape parameters a and b.
509
510
  * @customfunction
@@ -512,6 +513,7 @@ declare const Beta: {
512
513
  * @param b The second shape parameter; (1 - x)^(b-1).
513
514
  */
514
515
  incr(x: number, a: number, b: number): number;
516
+ invInc(p: any, a: any, b: any): any;
515
517
  };
516
518
  declare const ERF: {
517
519
  /**
@@ -589,7 +591,7 @@ declare const Distributions: {
589
591
  * @param a The first shape parameter, x^(a-1).
590
592
  * @param b The second shape parameter; (1 - x)^(b-1).
591
593
  */
592
- cdf(x: number, a: number, b: number): number;
594
+ cdf(x: number, a: number, b: number): any;
593
595
  /**
594
596
  * Probability Density Function. Calculates the probability of random variable x occuring from the beta distribution with the specified shape parameters a and b.
595
597
  * @param x The value to evaluate.
@@ -662,7 +664,7 @@ declare const Distributions: {
662
664
  * @param df2 Denominator degrees of freedom
663
665
  * @returns the Right-Tailed P-Value of the F Distribution
664
666
  */
665
- cdf(x: number, df1: number, df2: number): number;
667
+ cdf(x: number, df1: number, df2: number): any;
666
668
  /**
667
669
  * Calculates the right-tailed p-value of the supplied F distribution.
668
670
  * @param f F value to evaluate
@@ -968,7 +970,6 @@ declare const Distributions: {
968
970
  * @param df Degrees of Freedom
969
971
  */
970
972
  inv(p: number, df: number): any;
971
- invTable(p: number, df: number): any;
972
973
  };
973
974
  SmallestExtremeValue: {
974
975
  /**
@@ -1216,6 +1217,50 @@ declare const MANOVA: {
1216
1217
  Report(responses: any, factors: any, interactions?: any[]): any;
1217
1218
  ErrorMatrix(responses: any, factor: any): any;
1218
1219
  HypothesisMatrix(responses: any, factor: any): any;
1220
+ OneWay: {
1221
+ Report(dependent: any, independent: any[]): {
1222
+ PostHoc: {
1223
+ LawleyHotelling: {
1224
+ U: number;
1225
+ F: number;
1226
+ NumeratorDF: number;
1227
+ DenominatorDF: number;
1228
+ p: number;
1229
+ };
1230
+ PillaisTrace: {
1231
+ V: number;
1232
+ F: number;
1233
+ NumeratorDF: number;
1234
+ DenominatorDF: number;
1235
+ p: number;
1236
+ };
1237
+ Roy: {
1238
+ Lambda: number;
1239
+ p: number;
1240
+ };
1241
+ WilksLambda: {
1242
+ Lambda: number;
1243
+ F: number;
1244
+ NumeratorDF: number;
1245
+ DenominatorDF: number;
1246
+ p: number;
1247
+ };
1248
+ };
1249
+ SSCP: {
1250
+ Error: any;
1251
+ Hypothesis: any;
1252
+ Total: any;
1253
+ };
1254
+ };
1255
+ TotalSCCPMatrix(dependent: any): any;
1256
+ HypothesisMatrix(dependent: any, independent: any[]): any;
1257
+ LawleyHotelling(dependent: any, independent: any[]): number;
1258
+ PillaiTrace(dependent: any, independent: any[]): number;
1259
+ WilksLambda(dependent: any, independent: any[]): number;
1260
+ FactorLevelCount(independent: any[]): number[];
1261
+ TotalMeans(dependent: any): number[];
1262
+ GroupMeans(dependent: any, independent: any[]): any[];
1263
+ };
1219
1264
  };
1220
1265
  /**
1221
1266
  * Calculates the average moving range of the array supplied.
@@ -1920,7 +1965,7 @@ declare function GeneralizedLinearModel(dependent: number[], factors: any, covar
1920
1965
  S: number;
1921
1966
  };
1922
1967
  };
1923
- declare function MultipleLinearRegression(dependent: number[], factors: any, interactions?: any): {
1968
+ declare function MultipleLinearRegression(dependent: number[], factors: any, interactions?: any, ignoreIntercept?: any): {
1924
1969
  ANOVA: {
1925
1970
  Regression: {
1926
1971
  DF: number;
@@ -2132,6 +2177,7 @@ declare function G1(data: any, tolerance: any, referenceValue?: number): {
2132
2177
  */
2133
2178
  declare function GageEvaluation(VarianceComponents: any, tolerance: any): any;
2134
2179
  declare function GageLinearityAndBias(parts: any[], referenceValues: number[], responses: number[], processVariation?: number, useStDevMethod?: boolean): {
2180
+ Chart: HTMLCanvasElement;
2135
2181
  GageLinearity: {
2136
2182
  Intercept: {
2137
2183
  Coefficient: number;
@@ -2152,8 +2198,7 @@ declare function GageLinearityAndBias(parts: any[], referenceValues: number[], r
2152
2198
  Linearity: number;
2153
2199
  PercentLinearity: number;
2154
2200
  };
2155
- GageBias: any[];
2156
- Chart: HTMLCanvasElement;
2201
+ GageBias: any;
2157
2202
  };
2158
2203
  /**
2159
2204
  * Performs a GRR analysis using the ANOVA method on the provided data with the specified tolerance.
package/dist/index.d.ts CHANGED
@@ -503,7 +503,8 @@ declare const Beta: {
503
503
  * @param a The first shape parameter; x^(a-1).
504
504
  * @param b The second shape parameter; (1 - x)^(b-1).
505
505
  */
506
- inc(x: number, a: number, b: number): number;
506
+ inc(X: number, A: number, B: number): number;
507
+ incomplete(x: any, a: any, b: any): any;
507
508
  /**
508
509
  * Evaluates the regularized incomplete beta function of x for the beta function with specified shape parameters a and b.
509
510
  * @customfunction
@@ -512,6 +513,7 @@ declare const Beta: {
512
513
  * @param b The second shape parameter; (1 - x)^(b-1).
513
514
  */
514
515
  incr(x: number, a: number, b: number): number;
516
+ invInc(p: any, a: any, b: any): any;
515
517
  };
516
518
  declare const ERF: {
517
519
  /**
@@ -589,7 +591,7 @@ declare const Distributions: {
589
591
  * @param a The first shape parameter, x^(a-1).
590
592
  * @param b The second shape parameter; (1 - x)^(b-1).
591
593
  */
592
- cdf(x: number, a: number, b: number): number;
594
+ cdf(x: number, a: number, b: number): any;
593
595
  /**
594
596
  * Probability Density Function. Calculates the probability of random variable x occuring from the beta distribution with the specified shape parameters a and b.
595
597
  * @param x The value to evaluate.
@@ -662,7 +664,7 @@ declare const Distributions: {
662
664
  * @param df2 Denominator degrees of freedom
663
665
  * @returns the Right-Tailed P-Value of the F Distribution
664
666
  */
665
- cdf(x: number, df1: number, df2: number): number;
667
+ cdf(x: number, df1: number, df2: number): any;
666
668
  /**
667
669
  * Calculates the right-tailed p-value of the supplied F distribution.
668
670
  * @param f F value to evaluate
@@ -968,7 +970,6 @@ declare const Distributions: {
968
970
  * @param df Degrees of Freedom
969
971
  */
970
972
  inv(p: number, df: number): any;
971
- invTable(p: number, df: number): any;
972
973
  };
973
974
  SmallestExtremeValue: {
974
975
  /**
@@ -1216,6 +1217,50 @@ declare const MANOVA: {
1216
1217
  Report(responses: any, factors: any, interactions?: any[]): any;
1217
1218
  ErrorMatrix(responses: any, factor: any): any;
1218
1219
  HypothesisMatrix(responses: any, factor: any): any;
1220
+ OneWay: {
1221
+ Report(dependent: any, independent: any[]): {
1222
+ PostHoc: {
1223
+ LawleyHotelling: {
1224
+ U: number;
1225
+ F: number;
1226
+ NumeratorDF: number;
1227
+ DenominatorDF: number;
1228
+ p: number;
1229
+ };
1230
+ PillaisTrace: {
1231
+ V: number;
1232
+ F: number;
1233
+ NumeratorDF: number;
1234
+ DenominatorDF: number;
1235
+ p: number;
1236
+ };
1237
+ Roy: {
1238
+ Lambda: number;
1239
+ p: number;
1240
+ };
1241
+ WilksLambda: {
1242
+ Lambda: number;
1243
+ F: number;
1244
+ NumeratorDF: number;
1245
+ DenominatorDF: number;
1246
+ p: number;
1247
+ };
1248
+ };
1249
+ SSCP: {
1250
+ Error: any;
1251
+ Hypothesis: any;
1252
+ Total: any;
1253
+ };
1254
+ };
1255
+ TotalSCCPMatrix(dependent: any): any;
1256
+ HypothesisMatrix(dependent: any, independent: any[]): any;
1257
+ LawleyHotelling(dependent: any, independent: any[]): number;
1258
+ PillaiTrace(dependent: any, independent: any[]): number;
1259
+ WilksLambda(dependent: any, independent: any[]): number;
1260
+ FactorLevelCount(independent: any[]): number[];
1261
+ TotalMeans(dependent: any): number[];
1262
+ GroupMeans(dependent: any, independent: any[]): any[];
1263
+ };
1219
1264
  };
1220
1265
  /**
1221
1266
  * Calculates the average moving range of the array supplied.
@@ -1920,7 +1965,7 @@ declare function GeneralizedLinearModel(dependent: number[], factors: any, covar
1920
1965
  S: number;
1921
1966
  };
1922
1967
  };
1923
- declare function MultipleLinearRegression(dependent: number[], factors: any, interactions?: any): {
1968
+ declare function MultipleLinearRegression(dependent: number[], factors: any, interactions?: any, ignoreIntercept?: any): {
1924
1969
  ANOVA: {
1925
1970
  Regression: {
1926
1971
  DF: number;
@@ -2132,6 +2177,7 @@ declare function G1(data: any, tolerance: any, referenceValue?: number): {
2132
2177
  */
2133
2178
  declare function GageEvaluation(VarianceComponents: any, tolerance: any): any;
2134
2179
  declare function GageLinearityAndBias(parts: any[], referenceValues: number[], responses: number[], processVariation?: number, useStDevMethod?: boolean): {
2180
+ Chart: HTMLCanvasElement;
2135
2181
  GageLinearity: {
2136
2182
  Intercept: {
2137
2183
  Coefficient: number;
@@ -2152,8 +2198,7 @@ declare function GageLinearityAndBias(parts: any[], referenceValues: number[], r
2152
2198
  Linearity: number;
2153
2199
  PercentLinearity: number;
2154
2200
  };
2155
- GageBias: any[];
2156
- Chart: HTMLCanvasElement;
2201
+ GageBias: any;
2157
2202
  };
2158
2203
  /**
2159
2204
  * Performs a GRR analysis using the ANOVA method on the provided data with the specified tolerance.