powered by
Returns a function that evaluates the uniform CDF at given points.
# S3 method for uniform_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 uniform_dist object.
uniform_dist
Additional arguments (not used).
x <- uniform_dist(0, 10) F <- cdf(x) F(5) F(10)
Run the code above in your browser using DataLab