qqt(y, df = Inf, ylim = range(y), main = "Student's t Q-Q Plot", xlab = "Theoretical Quantiles", ylab = "Sample Quantiles", plot.it = TRUE, ...)
qqf(y, df1, df2, ylim=range(y), main= "F Distribution Q-Q Plot", xlab = "Theoretical Quantiles", ylab = "Sample Quantiles", plot.it = TRUE, ...)
df=Inf
represents the normal distribution.y
plot
y
qqnorm
for normal probability plots.
In fact qqt(y,df=Inf)
is identical to qqnorm(y)
in all respects except the default title on the plot.
qqnorm
# See also the lmFit examples y <- rt(50,df=4) qqt(y,df=4) abline(0,1)
Run the code above in your browser using DataCamp Workspace