qqplotGaussian | R Documentation |
This function creates a quantile-quantile plot to assess the goodness of fit of a Gaussian distribution to a given sample.
qqplotGaussian(data, ...)
data |
List of data points to check |
... |
The plot is created using |
A ggplot
object.
plotDensities
## Skewed distribution
sample <- rbeta(100 , 2 , 50)
qqplotGaussian(sample)
## Symmetric distribution
sample <- rbeta(100 , 5 , 5)
qqplotGaussian(sample)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.