Nothing
###############################################################################
# Weibull Plot
wp.plot <- function(x, plot.it=TRUE, a, col.line="black", lty.line=1,
xlim = NULL, ylim = NULL, main = NULL, sub = NULL, xlab = NULL, ylab="Probability", ...) {
x = sort(x[complete.cases(x)])
n = length(x)
if (missing(a)) {
a = ifelse(n <= 10, 3/8, 1/2)
}
y = log(-log(1-ppoints(n,a=a)))
if (plot.it) {
plot(x,y, log="x", yaxt="n", xlim=xlim, ylim=ylim, main=main, sub=sub, xlab=xlab, ylab=ylab, ...)
ticklabels=c( (1:5)/100, (1:9)/10)
ticksat=log(-log(1-ticklabels))
axis(2,at=ticksat,labels=ticklabels)
LM = lm(y~log(x))
curve( predict(LM,newdata=data.frame(x)), add=TRUE, lty=lty.line, col=col.line)
}
invisible(list(x=x, y=y))
}
###############################################################################
# Inverse Weibull Probability Plot
iwp.plot <- function(x, plot.it=TRUE, a, col.line="black", lty.line=1,
xlim = NULL, ylim = NULL, main = NULL, sub = NULL, xlab = NULL, ylab="Probability", ...) {
x = sort(x[complete.cases(x)])
n = length(x)
if (missing(a)) {
a = ifelse(n <= 10, 3/8, 1/2)
}
y = -log(-log(ppoints(n,a=a)))
if (plot.it) {
plot(x,y, log="x", yaxt="n", xlim=xlim, ylim=ylim, main=main, sub=sub, xlab=xlab, ylab=ylab, ...)
ticklabels=c( (1:5)/100, (1:9)/10)
ticksat=-log(-log(ticklabels))
axis(2,at=ticksat,labels=ticklabels)
LM = lm(y~log(x))
curve( predict(LM,newdata=data.frame(x)), add=TRUE, lty=lty.line, col=col.line)
}
invisible(list(x=x, y=y))
}
###############################################################################
# Exponential Probability Plot
ep.plot <- function(x, plot.it=TRUE, a, col.line="black", lty.line=1,
xlim = NULL, ylim = NULL, main = NULL, sub = NULL, xlab = NULL, ylab="Probability", ...) {
x = sort(x[complete.cases(x)])
n = length(x)
if (missing(a)) {
a = ifelse(n <= 10, 3/8, 1/2)
}
y = -log(1-ppoints(n,a=a))
if (plot.it) {
plot(x,y, yaxt="n", xlim=xlim, ylim=ylim, main=main, sub=sub, xlab=xlab, ylab=ylab, ...)
ticklabels=c(0.01, (1:9)/10, 0.99)
ticksat=-log(1-ticklabels)
axis(2,at=ticksat,labels=ticklabels)
LM = lm(y~0+x)
curve( predict(LM,newdata=data.frame(x)), add=TRUE, lty=lty.line, col=col.line)
}
invisible(list(x=x, y=y))
}
###############################################################################
# Gumbel Probability Plot
gp.plot <- function(x, plot.it=TRUE, a, col.line="black", lty.line=1,
xlim = NULL, ylim = NULL, main = NULL, sub = NULL, xlab = NULL, ylab="Probability", ...) {
x = sort(x[complete.cases(x)])
n = length(x)
if (missing(a)) {
a = ifelse(n <= 10, 3/8, 1/2)
}
y = -log(-log(ppoints(n,a=a)))
if (plot.it) {
plot(x,y, yaxt="n", xlim=xlim, ylim=ylim, main=main, sub=sub, xlab=xlab, ylab=ylab, ...)
ticklabels=c(0.01, (1:9)/10, 0.99)
ticksat=-log(-log(ticklabels))
axis(2,at=ticksat,labels=ticklabels)
LM = lm(y~x)
curve( predict(LM,newdata=data.frame(x)), add=TRUE, lty=lty.line, col=col.line)
}
invisible(list(x=x, y=y))
}
###############################################################################
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.