qesuite 1.0.46 → 1.0.48

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
@@ -329,6 +329,14 @@ declare const Distributions: {
329
329
  * @param b The second shape parameter; (1 - x)^(b-1).
330
330
  */
331
331
  pdf(x: number, a: number, b: number): number;
332
+ /**
333
+ * Evaluates the inverse of p for the beta distribution with specified shape parameters a and b.
334
+ * @customfunction
335
+ * @param p The value to evaluate.
336
+ * @param a The first shape parameter; x^(a-1).
337
+ * @param b The second shape parameter; (1 - x)^(b-1).
338
+ */
339
+ inv(p: number, a: number, b: number): any;
332
340
  };
333
341
  ChiSq: {
334
342
  cdf(x: number, df: number): number;
@@ -650,6 +658,12 @@ declare const Distributions: {
650
658
  * @param df Degrees of Freedom
651
659
  */
652
660
  RightTail(t: number, df: number): number;
661
+ /**
662
+ * Evaluates the inverse of the T-distribution with the specified degrees of freedom
663
+ * @param p The probability of the specified distribution
664
+ * @param df Degrees of Freedom
665
+ */
666
+ inv(p: number, df: number): any;
653
667
  };
654
668
  SmallestExtremeValue: {
655
669
  /**
@@ -846,6 +860,12 @@ declare const StDev: {
846
860
  */
847
861
  P(data: any[]): number;
848
862
  /**
863
+ * Calculates the pooled standard deviation of the data supplied.
864
+ * @customfunction
865
+ * @param data An array of data arrays. The numbers can be supplied as number types or strings
866
+ */
867
+ Pooled(data: any[]): number;
868
+ /**
849
869
  * Calculates the sample standard deviation of the array supplied.
850
870
  * @customfunction
851
871
  * @param data An array of numbers. The numbers can be supplied as number types or strings
@@ -906,6 +926,41 @@ declare const UnbiasingConstant: {
906
926
  d4?: undefined;
907
927
  })[];
908
928
  };
929
+ declare const HypothesisTesting: {
930
+ StudentsTTest: {
931
+ paired(array1: number[], array2: number[], twoTailed: boolean): {
932
+ t: number;
933
+ p: number;
934
+ };
935
+ };
936
+ };
937
+ declare const ANOVA: {
938
+ OneWay: {
939
+ Table(data: any): any;
940
+ };
941
+ PostHoc: {
942
+ Duncan: {
943
+ MultipleRange(data: {}): any;
944
+ Rp(treatment: number, df: number): number;
945
+ };
946
+ Fisher: {
947
+ LeastSignificantDifference(data: {}): any;
948
+ };
949
+ Tukey: {
950
+ Pairwise(data: {}): any;
951
+ SimultaneousConfidenceIntervals(data: {}): {
952
+ analysis: any;
953
+ chart: HTMLCanvasElement;
954
+ };
955
+ StudentizedRangeDistribution(numberTreatments: number, df: number): number;
956
+ };
957
+ };
958
+ };
959
+ declare function SumSquaredDeviation(data: number[], referenceValue?: any): number;
960
+ declare const Probability: {
961
+ Combinations(n: number, r: number): number;
962
+ Factorialize(x: number): any;
963
+ };
909
964
  /**
910
965
  * Return a serialized dataset
911
966
  * @param data An array of data sets to plot
@@ -1150,4 +1205,4 @@ declare function GRRByPartChart(data: GRRData): HTMLCanvasElement;
1150
1205
  declare function GRRPartxOperatorChart(data: GRRData): HTMLCanvasElement;
1151
1206
  declare function CompileGRRObject(operators: any, parts: any, measurements: any): GRRData;
1152
1207
 
1153
- export { AnovaTableTwoWay, AverageMovingRange, AxisSettings, Beta, CanvasDrawSettings, Capability, Chart, ChartSettings, CompileGRRObject, CreateBoxandWhiskerGraph, CreateCapabilityHistogram, CreateCapabilityPlot, CreateCategoricalBarGraph, CreateContinuousBarGraph, CreateControlChart, CreateScatterPlot, CreateSplitGraph, CreateStackedChart, CreateSummaryChart, CustomGridline, DataCollection, DataSet, Distributions, ERF, EngFont, FixedPointIteration, G1, G1Graphs, GRR, GRRByPartChart, GRRData, GRRGraphs, GRROperator, GRRPartxOperatorChart, GRRReplication, GageEvaluation, Gamma, GetFunctionValues, GetHistogramDataset, GoodnessOfFit, IndividualDistributionIdentification, IndividualDistributionPlots, IndividualValuePlot, LastObservationsChart, Line, Margin, MaximumLikelihoodParameters, Mean, Median, MovingRange, MovingRangeChart, NewtonRaphson, ObjectToArray, ParameterizedCDF, Point, QQPlot, QQPlotChart, Rang, RoundTO, SerializeData, Specification, StDev, Sum, UnbiasingConstant, VarianceComponents };
1208
+ export { ANOVA, AnovaTableTwoWay, AverageMovingRange, AxisSettings, Beta, CanvasDrawSettings, Capability, Chart, ChartSettings, CompileGRRObject, CreateBoxandWhiskerGraph, CreateCapabilityHistogram, CreateCapabilityPlot, CreateCategoricalBarGraph, CreateContinuousBarGraph, CreateControlChart, CreateScatterPlot, CreateSplitGraph, CreateStackedChart, CreateSummaryChart, CustomGridline, DataCollection, DataSet, Distributions, ERF, EngFont, FixedPointIteration, G1, G1Graphs, GRR, GRRByPartChart, GRRData, GRRGraphs, GRROperator, GRRPartxOperatorChart, GRRReplication, GageEvaluation, Gamma, GetFunctionValues, GetHistogramDataset, GoodnessOfFit, HypothesisTesting, IndividualDistributionIdentification, IndividualDistributionPlots, IndividualValuePlot, LastObservationsChart, Line, Margin, MaximumLikelihoodParameters, Mean, Median, MovingRange, MovingRangeChart, NewtonRaphson, ObjectToArray, ParameterizedCDF, Point, Probability, QQPlot, QQPlotChart, Rang, RoundTO, SerializeData, Specification, StDev, Sum, SumSquaredDeviation, UnbiasingConstant, VarianceComponents };
package/dist/index.d.ts CHANGED
@@ -329,6 +329,14 @@ declare const Distributions: {
329
329
  * @param b The second shape parameter; (1 - x)^(b-1).
330
330
  */
331
331
  pdf(x: number, a: number, b: number): number;
332
+ /**
333
+ * Evaluates the inverse of p for the beta distribution with specified shape parameters a and b.
334
+ * @customfunction
335
+ * @param p The value to evaluate.
336
+ * @param a The first shape parameter; x^(a-1).
337
+ * @param b The second shape parameter; (1 - x)^(b-1).
338
+ */
339
+ inv(p: number, a: number, b: number): any;
332
340
  };
333
341
  ChiSq: {
334
342
  cdf(x: number, df: number): number;
@@ -650,6 +658,12 @@ declare const Distributions: {
650
658
  * @param df Degrees of Freedom
651
659
  */
652
660
  RightTail(t: number, df: number): number;
661
+ /**
662
+ * Evaluates the inverse of the T-distribution with the specified degrees of freedom
663
+ * @param p The probability of the specified distribution
664
+ * @param df Degrees of Freedom
665
+ */
666
+ inv(p: number, df: number): any;
653
667
  };
654
668
  SmallestExtremeValue: {
655
669
  /**
@@ -846,6 +860,12 @@ declare const StDev: {
846
860
  */
847
861
  P(data: any[]): number;
848
862
  /**
863
+ * Calculates the pooled standard deviation of the data supplied.
864
+ * @customfunction
865
+ * @param data An array of data arrays. The numbers can be supplied as number types or strings
866
+ */
867
+ Pooled(data: any[]): number;
868
+ /**
849
869
  * Calculates the sample standard deviation of the array supplied.
850
870
  * @customfunction
851
871
  * @param data An array of numbers. The numbers can be supplied as number types or strings
@@ -906,6 +926,41 @@ declare const UnbiasingConstant: {
906
926
  d4?: undefined;
907
927
  })[];
908
928
  };
929
+ declare const HypothesisTesting: {
930
+ StudentsTTest: {
931
+ paired(array1: number[], array2: number[], twoTailed: boolean): {
932
+ t: number;
933
+ p: number;
934
+ };
935
+ };
936
+ };
937
+ declare const ANOVA: {
938
+ OneWay: {
939
+ Table(data: any): any;
940
+ };
941
+ PostHoc: {
942
+ Duncan: {
943
+ MultipleRange(data: {}): any;
944
+ Rp(treatment: number, df: number): number;
945
+ };
946
+ Fisher: {
947
+ LeastSignificantDifference(data: {}): any;
948
+ };
949
+ Tukey: {
950
+ Pairwise(data: {}): any;
951
+ SimultaneousConfidenceIntervals(data: {}): {
952
+ analysis: any;
953
+ chart: HTMLCanvasElement;
954
+ };
955
+ StudentizedRangeDistribution(numberTreatments: number, df: number): number;
956
+ };
957
+ };
958
+ };
959
+ declare function SumSquaredDeviation(data: number[], referenceValue?: any): number;
960
+ declare const Probability: {
961
+ Combinations(n: number, r: number): number;
962
+ Factorialize(x: number): any;
963
+ };
909
964
  /**
910
965
  * Return a serialized dataset
911
966
  * @param data An array of data sets to plot
@@ -1150,4 +1205,4 @@ declare function GRRByPartChart(data: GRRData): HTMLCanvasElement;
1150
1205
  declare function GRRPartxOperatorChart(data: GRRData): HTMLCanvasElement;
1151
1206
  declare function CompileGRRObject(operators: any, parts: any, measurements: any): GRRData;
1152
1207
 
1153
- export { AnovaTableTwoWay, AverageMovingRange, AxisSettings, Beta, CanvasDrawSettings, Capability, Chart, ChartSettings, CompileGRRObject, CreateBoxandWhiskerGraph, CreateCapabilityHistogram, CreateCapabilityPlot, CreateCategoricalBarGraph, CreateContinuousBarGraph, CreateControlChart, CreateScatterPlot, CreateSplitGraph, CreateStackedChart, CreateSummaryChart, CustomGridline, DataCollection, DataSet, Distributions, ERF, EngFont, FixedPointIteration, G1, G1Graphs, GRR, GRRByPartChart, GRRData, GRRGraphs, GRROperator, GRRPartxOperatorChart, GRRReplication, GageEvaluation, Gamma, GetFunctionValues, GetHistogramDataset, GoodnessOfFit, IndividualDistributionIdentification, IndividualDistributionPlots, IndividualValuePlot, LastObservationsChart, Line, Margin, MaximumLikelihoodParameters, Mean, Median, MovingRange, MovingRangeChart, NewtonRaphson, ObjectToArray, ParameterizedCDF, Point, QQPlot, QQPlotChart, Rang, RoundTO, SerializeData, Specification, StDev, Sum, UnbiasingConstant, VarianceComponents };
1208
+ export { ANOVA, AnovaTableTwoWay, AverageMovingRange, AxisSettings, Beta, CanvasDrawSettings, Capability, Chart, ChartSettings, CompileGRRObject, CreateBoxandWhiskerGraph, CreateCapabilityHistogram, CreateCapabilityPlot, CreateCategoricalBarGraph, CreateContinuousBarGraph, CreateControlChart, CreateScatterPlot, CreateSplitGraph, CreateStackedChart, CreateSummaryChart, CustomGridline, DataCollection, DataSet, Distributions, ERF, EngFont, FixedPointIteration, G1, G1Graphs, GRR, GRRByPartChart, GRRData, GRRGraphs, GRROperator, GRRPartxOperatorChart, GRRReplication, GageEvaluation, Gamma, GetFunctionValues, GetHistogramDataset, GoodnessOfFit, HypothesisTesting, IndividualDistributionIdentification, IndividualDistributionPlots, IndividualValuePlot, LastObservationsChart, Line, Margin, MaximumLikelihoodParameters, Mean, Median, MovingRange, MovingRangeChart, NewtonRaphson, ObjectToArray, ParameterizedCDF, Point, Probability, QQPlot, QQPlotChart, Rang, RoundTO, SerializeData, Specification, StDev, Sum, SumSquaredDeviation, UnbiasingConstant, VarianceComponents };