Created
August 24, 2015 19:34
-
-
Save mages/dedfb0d97082f0f0e0ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
glmModelPlot <- function(x, y, xlim,ylim, meanPred, LwPred, UpPred, | |
plotData, main=NULL){ | |
## Based on code by Arthur Charpentier: | |
## http://freakonometrics.hypotheses.org/9593 | |
par(mfrow=c(1,1)) | |
n <- 2 | |
N <- length(meanPred) | |
zMax <- max(unlist(sapply(plotData, "[[", "z")))*1.5 | |
mat <- persp(xlim, ylim, matrix(0, n, n), main=main, | |
zlim=c(0, zMax), theta=-30, | |
ticktype="detailed",box=FALSE) | |
C <- trans3d(x, UpPred, rep(0, N),mat) | |
lines(C, lty=2) | |
C <- trans3d(x, LwPred, rep(0, N), mat) | |
lines(C, lty=2) | |
C <- trans3d(c(x, rev(x)), c(UpPred, rev(LwPred)), | |
rep(0, 2*N), mat) | |
polygon(C, border=NA, col=adjustcolor("yellow", alpha.f = 0.5)) | |
C <- trans3d(x, meanPred, rep(0, N), mat) | |
lines(C, lwd=2, col="grey") | |
C <- trans3d(x, y, rep(0,N), mat) | |
points(C, lwd=2, col="#00526D") | |
for(j in N:1){ | |
xp <- plotData[[j]]$x | |
yp <- plotData[[j]]$y | |
z0 <- plotData[[j]]$z0 | |
zp <- plotData[[j]]$z | |
C <- trans3d(c(xp, xp), c(yp, rev(yp)), c(zp, z0), mat) | |
polygon(C, border=NA, col="light blue", density=40) | |
C <- trans3d(xp, yp, z0, mat) | |
lines(C, lty=2) | |
C <- trans3d(xp, yp, zp, mat) | |
lines(C, col=adjustcolor("blue", alpha.f = 0.5)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment