data(comp2lcomsPlackettPlackett2)
summary(comp2lcomsPlackettPlackett2)
# Let us now visualize the parameter space
plot.complcom.space <- function(text=NULL) {
U12 <- comp2lcomsPlackettPlackett2$T2.12
U21 <- comp2lcomsPlackettPlackett2$T2.21
V12 <- comp2lcomsPlackettPlackett2$T3.12
V21 <- comp2lcomsPlackettPlackett2$T3.21
U <- c(U12,U21); V <- c(V12,V21)
plot(U,V, type="n", xlim=c(-1,1), ylim=c(-0.4,0.4),
xlab="L-COMOMENT CORRELATION",
ylab="L-COSKEW")
# plot transparent blue L-correlation and L-coskew first
points(U12,V12, col=rgb( 0, 0, 1, 0.12), pch=16)
# plot transparent purple L-correlation and L-coskew second
points(U21,V21, col=rgb(0.85, 0, 1, 0.12), pch=16)
abline(v=0); abline(h=0) # cross lines
mtext(text)
}
my.text <- "L-COMOMENT SPACE OF PLACKETT-PLACKETT COMPOSITE COPULA"
plot.complcom.space(text=my.text) # plot the parameter spaceRun the code above in your browser using DataLab