Compute the Value of Geometric Quantile Function in R Programming - qgeom() Function Last Updated : 30 Jun, 2020 Comments Improve Suggest changes Like Article Like Report qgeom() Function in R Language is used to plot a graph for quantile function of Geometric Distribution. Syntax: qgeom(x, prob) Parameters: x: x-values of qgeom() function prob: prob of plot Example 1: Python3 # R program to illustrate # qgeom() function in r # Specify x-values for qgeom function x_qgeom <- seq(0, 2, by = 0.1) # Apply qgeom function y_qgeom <- qgeom(x_qgeom, prob = 1) # Plot qgeom values plot(y_qgeom) Output: Example 2: Python3 # R program to illustrate # qgeom() function in r # Specify x-values for qgeom function x_qgeom <- seq(0, 2, by = 0.02) # Apply qgeom function y_qgeom <- qgeom(x_qgeom, prob = 0.5) # Plot qgeom values plot(y_qgeom) Output: Comment More infoAdvertise with us Next Article Compute the Value of Geometric Quantile Function in R Programming - qgeom() Function A akhilsharma870 Follow Improve Article Tags : R Language R Statistics Similar Reads Compute the Value of Poisson Quantile Function in R Programming - qpois() Function qpois() function in R Language is used to compute the value of Poisson Quantile Function. It creates a quantile density plot for poisson distribution. Syntax: qpois(vec, lambda) Parameters: vec: Sequence of integer values lambda: Average number of events per interval Example 1: Python3 1== # R progr 2 min read Compute value of Logistic Quantile Function in R Programming - qlogis() Function qlogis() function in R Language is used to compute the value of logistic quantile function. It also creates a plot of the quantile function of logistic density distribution. Syntax: qlogis(vec) Parameters: vec: x-values for normal density Example 1: Python3 1== # R program to compute value of # logi 1 min read Compute the value of Cauchy Quantile Function in R Programming - qcauchy() Function qcauchy() function in R Language is used to calculate the value of cauchy quantile function. It also creates a density plot of cauchy quantile function. Syntax: qcauchy(vec, scale) Parameters: vec: x-values for cauchy function scale: Scale for plotting Example 1: Python3 1== # R Program to compute v 1 min read Compute value of Log Normal Quantile Function in R Programming - qlnorm() Function qlnorm() function in R Language is used to compute the value of log normal quantile function. It also creates a plot of the quantile function of log normal distribution. Syntax: qlnorm(vec) Parameters: vec: x-values for normal density Example 1: Python3 1== # R program to compute value of # log norm 1 min read Compute the Value of Negative Binomial Quantile Function in R Programming - qnbinom() Function qnbinom() function in R Language is used to compute the value of negative binomial quantile function. It also creates a density plot of the negative binomial quantile function. Syntax: qnbinom(vec, size, prob) Parameters: vec: x-values for binomial density size: Number of trials prob: Probability Ex 1 min read Like