Nothing
globalVariables("Weibull.Plot.Quantiles")
# Weibullness Test from the Weibull Plot
wp.test <- function (x,a) {
DNAME = deparse(substitute(x))
stopifnot(is.numeric(x))
x = sort(x[complete.cases(x)])
n = length(x)
if ((n < 3L || n > 1000L)) stop("sample size must be between 3 and 1000")
if (missing(a)) {a= ifelse(n <= 10, 3/8, 1/2)}
u = log( x )
v = log(-log(1-ppoints(n,a=a)))
r = cor(u,v)
alphas = as.numeric( colnames(Weibull.Plot.Quantiles) )
quantiles = Weibull.Plot.Quantiles[n-2,]
pvalue.function = approxfun(x=quantiles, y=alphas, yleft=0.0, yright=1.0)
pval = pvalue.function(r)
RVAL = list(statistic = c(correlation=r), p.value = pval, sample.size=n,
method = "Weibullness test from the Weibull plot", data.name = DNAME)
class(RVAL) = "htest"
return(RVAL)
}
## wp.test(1:3)
# p-value with r and n
wp.test.pvalue <- function (r,n) {
if (n < 3L || n > 1000L) stop("sample size must be between 3 and 1000")
alphas = as.numeric( colnames(Weibull.Plot.Quantiles) )
quantiles = Weibull.Plot.Quantiles[n-2,]
pvalue.function = approxfun(x=quantiles, y=alphas, yleft=0.0, yright=1.0)
pval = pvalue.function(r)
RVAL = list(statistic = c(correlation = r), p.value = pval,
method = "p-value value for the Weibullness test",
data.name = NULL)
class(RVAL) = "htest"
return(RVAL)
}
## critical value for wp.test
print.wp.test.critical <- function (x,...) {
cat("\n ", x$title, "\n\n")
cat("significance level = ",x$alpha, ", ",
"sample size = ", x$sample.size,"\n\n",sep="" )
cat("critical value =", x$critical.value, "\n\n")
}
# critical value with alpha and n
wp.test.critical <- function (alpha, n) {
if (n < 3L || n > 1000L) stop("sample size must be between 3 and 1000")
if (alpha <= 0 || alpha >= 1) stop("Significance level must be between 0 and 1")
AL = as.integer( round(alpha*1000) )
alphas = as.numeric( colnames(Weibull.Plot.Quantiles) )
quantiles = Weibull.Plot.Quantiles[n-2,AL+1]
RVAL = list(sample.size=n, alpha=AL/1000, critical.value=quantiles,
title="Critical value for the Weibullness test",
data.name =Weibull.Plot.Quantiles)
class(RVAL) = "wp.test.critical"
return(RVAL)
}
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.