Learn R Programming

AccSamplingDesign (version 0.0.7)

optVarPlan: Variables Acceptance Sampling Plan

Description

Creates Variable Acceptance Sampling plans for normal or beta distributed measurements.

Usage

optVarPlan(PRQ, CRQ, alpha = 0.05, beta = 0.10, USL = NULL, LSL = NULL,
           distribution = c("normal", "beta"), sigma_type = c("known", "unknown"),
           theta_type = c("known", "unknown"), sigma = NULL, theta = NULL)

Value

A VarPlan object containing:

distribution

Distribution used ("normal" or "beta").

sample_size

Final sample size after rounding up to the next integer, for practical application.

k

Acceptability constant.

n

Unrounded sample size.

Arguments

PRQ

Producer Risk Quality (must be within valid range for the chosen distribution).

CRQ

Consumer Risk Quality (must be greater than PRQ and within valid range).

alpha

Producer's risk (numeric between 0 and 1).

beta

Consumer's risk (numeric between 0 and 1).

USL

Upper Specification Limit (numeric). Only one of USL or LSL should be provided.

LSL

Lower Specification Limit (numeric). Only one of USL or LSL should be provided.

distribution

Measurement distribution: "normal" or "beta".

sigma_type

Indicates whether sigma (population standard deviation) is "known" or "unknown".

theta_type

Indicates whether theta (population precision parameter for beta) is "known" or "unknown".

sigma

Known standard deviation (used for normal distribution). Required if sigma_type = "known".

theta

Precision (dispersion) parameter for the beta distribution. If unknown, it can be estimated from historical data using functions such as betaff.

Author

Ha Truong

Details

The function generates variable acceptance sampling plans based on specified producer and consumer risks and either a normal or beta distribution model.

The specification limit must be defined via either USL (upper specification limit) or LSL (lower specification limit), depending on whether the one-sided quality criterion concerns the upper or lower tail. Only one limit should be provided.

For the "normal" model, the plan can be computed assuming the standard deviation (sigma) is either known or estimated from data. Optimization for unknown sigma is performed using the derivative-free Nelder-Mead method (Nelder and Mead, 1965) via optim in base R.

For the "beta" model, the dispersion (precision) parameter theta determines how concentrated the distribution is around the mean. Users must either:

  • provide a known value for theta, typically obtained from prior process studies or historical data; or

  • estimate it from sample data using a fitting function such as betaff in the VGAM package.

Optimization for Beta plans is performed using optim with the "L-BFGS-B" method (Byrd et al., 1995) to handle bounds on sample size and acceptance numbers.

This approach ensures stable and efficient plan calculation while relying solely on base R functionality.

References

* ISO 3951-1:2013 - Sampling procedures for inspection by variables.

* Wilrich, PT. (2004). Single Sampling Plans for Inspection by Variables under a Variance Component Situation. In: Lenz, HJ., Wilrich, PT. (eds) Frontiers in Statistical Quality Control 7. Physica, Heidelberg.

* K. Govindaraju and R. Kissling (2015). Sampling plans for Beta-distributed compositional fractions.

* J. A. Nelder and R. Mead. A simplex method for function minimization. The Computer Journal, 7(4): 308–313, 1965. DOI 10.1093/comjnl/7.4.308.

* R. H. Byrd, P. Lu, J. Nocedal and C. Zhu. A limited memory algorithm for bound constrained optimization. SIAM Journal on Scientific Computing, 16(5): 1190–1208, 1995. DOI 10.1137/0916069.

Examples

Run this code
# Example for normal distribution plan
norm_plan <- optVarPlan(
  PRQ = 0.025,        # Acceptable quality level (% nonconforming)
  CRQ = 0.1,          # Rejectable quality level (% nonconforming)
  alpha = 0.05,       # Producer's risk
  beta = 0.1,         # Consumer's risk
  distribution = "normal",
  USL = 10
)
summary(norm_plan)

# Example for beta distribution plan
beta_plan <- optVarPlan(
  PRQ = 0.025,        # Target quality level (% nonconforming)
  CRQ = 0.1,          # Minimum quality level (% nonconforming)
  alpha = 0.05,       # Producer's risk
  beta = 0.1,         # Consumer's risk
  distribution = "beta",
  theta = 44000000,   # Beta distribution parameter
  LSL = 0.00001
)
summary(beta_plan)

Run the code above in your browser using DataLab