summary.VarPlan {AccSamplingDesign} | R Documentation |
Summarize Variable Acceptance Plan
Description
Detailed summaries for variable acceptance plans.
Usage
## S3 method for class 'VarPlan'
summary(object, ...)
Arguments
object |
Plan object to summarize |
... |
Additional parameters (ignored) |
Value
No return value. This function is called for its side effect of printing a formatted summary of the variable sampling plan to the console.
Author(s)
Ha Truong
Examples
var_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"
)
summary(var_plan)
[Package AccSamplingDesign version 0.0.6 Index]