# Specify a positively associated Plackett copula and perform the
# regression using the defaults. Plot the regression---median
# in this case
theta <- 10
R <- qua.regressCOP(cop=PLACKETTcop, para=c(theta))
plot(R$U,R$V, type="l", lwd=5, xlim=c(0,1), ylim=c(0,1))
# now superimpose the theoretical line for the Plackett
lines(R$U,(1+(theta-1)*R$U)/(theta+1), col=4, lwd=2)
# Continue the example by performing 90th-percentile regression
R <- qua.regressCOP(F=0.90,cop=PLACKETTcop, para=c(theta))
lines(R$U,R$V, col=2, lwd=2)
# and then 10th-percentile regression
R <- qua.regressCOP(F=0.10,cop=PLACKETTcop, para=c(theta))
lines(R$U,R$V, col=3, lty=2)
# Specify a composite copula as two Placketts with respective
# parameters and then the mixing parameters alpha and beta.
para <- list(cop1=PLACKETTcop, cop2=PLACKETTcop,
para1=c(0.004), para2=c(5),
alpha=0.93, beta=0.57)
# Initial a plot
plot(c(0,1),c(0,1), type="n", lwd=3,
xlab="U, NONEXCEEDANCE PROBABILITY",
ylab="V, NONEXCEEDANCE PROBABILITY")
# Draw the regression of V on U and then U on V (swap=TRUE)
qua.regressCOP.draw(cop=composite2COP, para=para, ploton=FALSE)
qua.regressCOP.draw(cop=composite2COP, para=para, swap=TRUE,
lty=2, ploton=FALSE)
# Specify a composite copula as two Placketts with respective
# parameters and then the mixing parameters alpha and beta.
para <- list(cop1=PLACKETTcop, cop2=PLACKETTcop,
para1=c(0.04), para2=c(500),
alpha=0.63, beta=0.47)
D <- simCOP(n=3000, cop=composite2COP, para=para, cex=0.5)
qua.regressCOP.draw(cop=composite2COP, para=para, ploton=FALSE)
qua.regressCOP.draw(cop=composite2COP, para=para, swap=TRUE,
lty=2, ploton=FALSE)
level.curvesCOP(cop=composite2COP, para=para, ploton=FALSE)
para <- list(cop1=PLACKETTcop, cop2=PLACKETTcop,
para1=c(0), para2=c(500),
alpha=0.63, beta=0.47)
D <- simCOP(n=3000, cop=composite2COP, para=para, cex=0.5)
qua.regressCOP.draw(cop=composite2COP, para=para, ploton=FALSE)
qua.regressCOP.draw(cop=composite2COP, para=para,
swap=TRUE, lty=2, ploton=FALSE)
level.curvesCOP(cop=composite2COP, para=para, ploton=FALSE)
for(i in seq(1,10)) {
para <- list(cop1=PLACKETTcop, cop2=PLACKETTcop,
para1=10^runif(1,min=-4,max=0),
para2=10^runif(1,min=0,max=4),
alpha=runif(1), beta=runif(1))
txts <- c("Alpha=", round(para$alpha, digits=4),
"; Beta=", round(para$beta, digits=4),
"; Theta1=", round(para$para1[1], digits=5),
"; Theta2=", round(para$para2[1], digits=2))
D <- simCOP(n=3000, cop=composite2COP, para=para, cex=0.5, col=3)
mtext(paste(txts,collapse=""))
qua.regressCOP.draw(F=c(seq(0.05, 0.95, by=0.05)),
cop=composite2COP, para=para, ploton=FALSE)
qua.regressCOP.draw(F=c(seq(0.05, 0.95, by=0.05)),
cop=composite2COP, para=para,
swap=TRUE, ploton=FALSE)
level.curvesCOP(cop=composite2COP, para=para, ploton=FALSE)
Sys.sleep(3)
}
Run the code above in your browser using DataLab