chi(data, nq = 100, qlim = NULL, alpha = 0.05, trunc = TRUE)
"summary"(object, digits=3, ...)
"plot"(x, show=c("Chi"=TRUE,"ChiBar"=TRUE), lty=1, cilty=2, col=1, spcases=TRUE, cicol=1, xlim=c(0, 1), ylimChi = c(-1, 1), ylimChiBar = c(-1, 1), mainChi = "Chi", mainChiBar = "Chi Bar", xlab = "Quantile", ylabChi = expression(chi(u)),#"Chi(u)" ylabChiBar = expression(bar(chi)(u)), #"Chi Bar(u)" ask, ...)
alpha = 0.05
. trunc = TRUE
. chi
.c("Chi" = TRUE, "ChiBar" = TRUE)
.FALSE
.chi
containing the following.A. G. Stephenson. evd: Extreme Value Distributions, R News, 2, 2002.
MCS
, rank
D <- liver[liver$dose == "D",]
chiD <- chi(D[, 5:6])
par(mfrow=c(1,2))
plot(chiD)
A <- liver[liver$dose == "A",]
chiA <- chi(A[, 5:6])
# here the limiting value of chi bar(u) lies away from one so the chi plot is
# not relevant and is plotted in grey
plot(chiA)
Run the code above in your browser using DataLab