Description Usage Arguments Details Value Note Author(s) See Also Examples
ppPlot
creates a Probability plot of the values in x including a line.
1 2 3 |
x |
vector containing the sample for |
distribution |
character string specifying the distribution of x. The function
By default |
confbounds |
boolean value: ‘TRUE’ if confidence bounds should be drawn (default value). |
alpha |
significance level for the confidence bounds, set on ‘0.05’ by default. |
probs |
vector containing the percentages for the y axis. All the values need to be between ‘0’ and ‘1’ |
main |
an overall title for the plot: see |
xlab |
a title for the x axis: |
ylab |
a title for the y axis: |
xlim |
vector giving the range of the x-axis. |
ylim |
vector giving the range of the y-axis. |
border |
numerical value or single character string giving the color of interpolation line. |
bounds.col |
numerical value or single character string giving the color of confidence bounds lines. |
bounds.lty |
numerical value giving the color of confidence bounds lines. |
grid |
logical value, deciding whether a grid will be added to the current plot. |
box |
logical value, deciding whether a box is drawn to around the current plot. |
stats |
logical value deciding whether |
start |
A named list giving the parameters to be fitted with initial values. Must be supplied for some distribution. (see Details) |
... |
further graphical parameters (see |
Distribution fitting is deligated to function fitdistr
of the R-package MASS.
For computation of the confidence bounds the variance of the quantiles is estimated using the delta method,
which implies estimation of observed Fisher Information matrix as well as the gradient of the CDF of the fitted distribution.
Where possible, those values are replaced by their normal approximation.
ppPlot
returns a list containing the following:
x - x coordinates
y - y coordinates
int - Intercept
slope - slope
For an example in context which shows the usage of the function ppPlot()
please read the vignette for the package qualityTools
at http://www.r-qualitytools.org/html/Analyze.html.
Thomas Roth thomas.roth@tu-berlin.de
qqPlot
fitdistr
in R-package MASS
http://www.r-qualitytools.org/html/Analyze.html
1 2 3 4 5 6 7 8 9 10 11 12 13 | #set up the plotting window for 6 plots
par(mfrow = c(3,2))
#generate random data from weibull distribution
x = rweibull(20, 8, 2)
#Probability Plot for different distributions
ppPlot(x, "log-normal")
ppPlot(x, "normal")
ppPlot(x, "exponential", DB = TRUE)
ppPlot(x, "cauchy")
ppPlot(x, "weibull")
ppPlot(x, "logistic")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.