to_k_lambda_weibull | R Documentation |
The function to_k_lambda_weibull
converts the mean and standard deviation to the shape and scale for
the Weibull distributions.
to_k_lambda_weibull(mu, sd)
mu |
a numeric vector representing the means of Weibull distributions |
sd |
a numeric vector representing the standard deviations of Weibull distributions.
|
The purpose of this function is to convert the parameterization of Weibull distribution in the form of mean and standard deviation to the form of shape and scale. It can be used for specifying the initial values for the EM algorithm when the first-hand initial values are in the form of mean and standard deviation from K-means clustering algorithm.
a list of two items
k |
a vector of the shapes of Weibull distributions |
lambda |
a vector of the scales of Weibull distributions |
to_mu_sd_weibull
to_k_lambda_weibull(2, 1)
to_k_lambda_weibull(c(2, 5), c(1, 0.7))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.