VOOZH about

URL: https://www.geeksforgeeks.org/r-language/compute-the-value-of-quantile-function-over-uniform-distribution-in-r-programming-qunif-function/

⇱ Compute the Value of Quantile Function over Uniform Distribution in R Programming - qunif() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Compute the Value of Quantile Function over Uniform Distribution in R Programming - qunif() Function

Last Updated : 15 Jul, 2025
In R programming, qunif() function gives the value of quantile function over Uniform Distribution.
Syntax: qunif(p, min, max, lower.tail = TRUE, log.p = FALSE) Parameters: p: represents probabilities vector min, max: represents lower and upper limits of the distribution lower.tail: represents logical value. If TRUE, probabilities are P[Xx] log.p: represents logical value. If TRUE, probabilities are given as log(p)
Example 1: Output:
[1] 2.0 2.8 3.6 4.4 5.2 6.0
Example 2: Output: 👁 Image
Comment
Article Tags:

Explore