Compute the Value of Quantile Function over Uniform Distribution in R Programming - qunif() Function Last Updated : 03 Jul, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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: r # R program to find the value of # Quantile Function # Creating a vector x <- seq(0, 1, by = 0.2) # qunif() function qunif(x, min = 2, max = 6) Output: [1] 2.0 2.8 3.6 4.4 5.2 6.0 Example 2: r # Create variables x <- seq(0, 1, by = 0.02) y <- qunif(x, min = 1, max = 5) # Output to be present as PNG file png(file = "qunifGFG.png") # Plot plot(y, type = "o") # Saving the file dev.off() Output: Comment More infoAdvertise with us Next Article Compute the Value of Quantile Function over Uniform Distribution in R Programming - qunif() Function U utkarsh_kumar Follow Improve Article Tags : R Language R Statistics Similar Reads Compute the value of Quantile Function over F Distribution in R Programming - qf() Function qf() function in R Language is used to compute the value of quantile function over F distribution for a sequence of numeric values. It also creates a density plot of quantile function over F Distribution. Syntax: qf(x, df1, df2) Parameters: x: Numeric Vector df: Degree of Freedom Example 1: Python3 1 min read Compute the Value of Quantile Function over Weibull Distribution in R Programming - qweibull() Function qweibull() function in R Language is used to compute the value of Quantile Function for Weibull Distribution. Syntax: qweibull(x, shape) Parameters: x: Numeric Vector shape: Shape Parameter Example 1: Python3 1== # R Program to compute the value of # Quantile Weibull Function # Creating a sequence o 1 min read Compute the value of Quantile Function over Studentized Distribution in R Programming - qtukey() Function qtukey() function in R Language is used to compute the value of Studentized Range Quantile Function over a sequence of Numeric Values. Syntax: qtukey(x, nmeans, df) Parameters: x: Numeric Vector nmeans: Number of means df: Degree of Freedom Example 1: Python3 1== # R Program to compute the value of 1 min read Compute the value of CDF on Uniform Distribution in R Programming - punif() Function In R programming, punif() function is used to compute the value of Cumulative Distribution Function(CDF). Syntax: punif(q, min = 0, max = 1, lower.tail = TRUE, log.p = FALSE) Parameters: q: represents vector of quantiles min, max: represents lower and upper limits of the distribution lower.tail: rep 1 min read Compute the value of Quantile Function over Wilcoxon Rank Sum Distribution in R Programming â qwilcox() Function qwilcox() function in R Language is used to compute the value of Quantile Function(QF) for Wilcoxonrank Sum Statistic Distribution over a sequence of Numeric Values. Syntax: qwilcox(x, m, n) Parameters: x: Numeric Vector m: Larger sample size n: Smaller sample size Example 1: Python3 1== # R Program 1 min read Like