powered by
This function validates the given parameters for calculating Weibull distribution.
validate_weibull_parameters( given_first_quartile, given_median, threshold, asymptote )
Logical value indicating whether the parameters are valid (TRUE) or not (FALSE)
The first quartile of the data.
The median of the data.
A constant threshold value.
A constant asymptote value (gamma).
# Validate parameters is_valid <- validate_weibull_parameters( given_first_quartile = 30, given_median = 50, threshold = 15, asymptote = 0.8 ) print(is_valid)
Run the code above in your browser using DataLab