powered by
Returns a function that evaluates the Weibull CDF at given points.
# S3 method for weibull_dist cdf(x, ...)
A function function(q, log.p = FALSE, ...) returning the CDF (or log-CDF) at q.
function(q, log.p = FALSE, ...)
q
A weibull_dist object.
weibull_dist
Additional arguments (not used).
x <- weibull_dist(shape = 2, scale = 3) F <- cdf(x) F(1) F(3)
Run the code above in your browser using DataLab