validate_weibull_parameters | R Documentation |
This function validates the given parameters for calculating Weibull distribution.
validate_weibull_parameters(
given_first_quartile,
given_median,
threshold,
asymptote
)
given_first_quartile |
The first quartile of the data. |
given_median |
The median of the data. |
threshold |
A constant threshold value. |
asymptote |
A constant asymptote value (gamma). |
Logical value indicating whether the parameters are valid (TRUE) or not (FALSE)
# Validate parameters
is_valid <- validate_weibull_parameters(
given_first_quartile = 30,
given_median = 50,
threshold = 15,
asymptote = 0.8
)
print(is_valid)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.