qqplot | R Documentation |
Faster alternative to stats::qqplot()
. For more than 1e5 points
we remove excess points, that would not be visible in the plot, since the
points are so close.
qqplot( x, y, plot.it = TRUE, xlab = deparse1(substitute(x)), ylab = deparse1(substitute(y)), ... )
x |
First sample for |
y |
Second sample for |
plot.it |
Should the plot be created. |
xlab |
x label for plot. |
ylab |
y label for plot. |
... |
Other arguments passed to |
list with sorted samples, interpolated to be same size.
qqplot(stats::runif(1e6),stats::runif(1e6))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.