The Quantile-Quantile Plot in Programming Language, or (Q-Q Plot) is defined as a value of two variables that are plotted corresponding to each other and check whether the distributions of two variables are similar or not with respect to the locations. qqline() function in R Language is used to draw a Q-Q Line Plot.
R – Quantile-Quantile Plot
Syntax: qqline(x, y, col)
Parameters:
- x, y: X and Y coordinates of plot
- col: It defines color
Returns: A QQ Line plot of the coordinates provided
Quantile-Quantile Plot in R Example
Example 1: Implementation of Basic QQplot Interpretation using qqline() Function in R
R
set.seed (500)
x <- rnorm (1200)
qqnorm (x)
qqline (x, col = "darkgreen" )
|
Output:

Above is a representation of QQplot of Normally Distributed Random Numbers.
Example 2: Implementation of QQplot of Logistically Distributed Values
R
y <- rlogis (800)
qqnorm (y)
qqline (y, col = "darkgreen" )
|
Output:

Above is the Q-Q Plot of theoretical quantiles.