Open In App

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:

Next Article
Article Tags :

Similar Reads