This function generates an upward CUSUM control chart for a Gamma distribution, incorporating a
cautious parameter update mechanism based on guaranteed performance.
It enables dynamic process monitoring, ensuring progressive adaptation to distribution changes.
This approach follows the methodology presented in the work of Madrid-Alvarez, García-Díaz, and Tercero-Gómez (2024),
where a cautious learning scheme for parameter updates in CUSUM control charts applied to Gamma distributions is proposed.
The implementation captures distribution changes and adjusts the control limits to improve process variation detection.
Features:
If the user does not provide Phase I and Phase II data, the function automatically generates them.
If known_alpha = TRUE
, alpha
is fixed and not estimated.
If known_alpha = FALSE
, alpha
is estimated from Phase I data.
Includes dynamic control limits and a summary of parameters.
Integrates a cautious learning scheme using the parameters k_l
, delay
, and tau
.
Recommendations
The parameters k_l
, delay
, and tau
are part of the cautious learning mechanism of the CUSUM chart. These values enable the dynamic
updating of beta0_est
and H_plus
, ensuring that the control chart progressively adapts to process changes, thus improving sensitivity in detecting deviations.
For proper implementation, it is recommended to reference the values proposed in:
Madrid-Alvarez, H. M., García-Díaz, J. C., & Tercero-Gómez, V. G. (2024).
A CUSUM control chart for the Gamma distribution with cautious parameter learning.
Quality Engineering, 1-23.
While these parameters have been tested and validated in the referenced article, users can adjust them based on the specific characteristics
of their process, considering factors such as system variability and desired update frequency.
Additionally, if detailed guidance on selecting values for H_delta
and H_plus
is required, it is recommended to review the referenced article,
which presents calibration and adjustment strategies for these limits to ensure optimal control chart performance.