qesuite 1.0.25 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3428,8 +3428,8 @@ function G1(data, tolerance, referenceValue) {
3428
3428
  bias: Bias,
3429
3429
  t: T,
3430
3430
  p: P,
3431
- Var_Rpt: K / Cg,
3432
- Var_RptBias: K / Cgk
3431
+ Var_Rpt: K / Cg / 100,
3432
+ Var_RptBias: K / Cgk / 100
3433
3433
  };
3434
3434
  }
3435
3435
  function GageEvaluation(VarianceComponents2, tolerance) {
package/dist/index.mjs CHANGED
@@ -3341,8 +3341,8 @@ function G1(data, tolerance, referenceValue) {
3341
3341
  bias: Bias,
3342
3342
  t: T,
3343
3343
  p: P,
3344
- Var_Rpt: K / Cg,
3345
- Var_RptBias: K / Cgk
3344
+ Var_Rpt: K / Cg / 100,
3345
+ Var_RptBias: K / Cgk / 100
3346
3346
  };
3347
3347
  }
3348
3348
  function GageEvaluation(VarianceComponents2, tolerance) {
package/index.ts CHANGED
@@ -3990,8 +3990,8 @@ export function G1(data: any, tolerance: any, referenceValue?: number){
3990
3990
  bias: Bias,
3991
3991
  t: T,
3992
3992
  p: P,
3993
- Var_Rpt: K/Cg,
3994
- Var_RptBias: K/Cgk
3993
+ Var_Rpt: (K/Cg)/100,
3994
+ Var_RptBias: (K/Cgk)/100
3995
3995
  }
3996
3996
  }
3997
3997
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qesuite",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Performs advanced statistical analysis of data. Specifically designed for engineering statistical analysis",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -0,0 +1 @@
1
+ Changed G1().Var \_Rpt && \_RptBias to output as decimals not percents so formulas are now divided by 100 to make it easier to format as percents in other software.