Displaying 1 result from an estimated 1 matches for "colramp2".
Did you mean:
colramp
2011 Dec 22
1
overlaid filled contour plots
...RampPalette(c("white", clr[2]))
col <- paste(colramp1(5), "80", sep="") # make transparent
filled.contour(dest1$x1, dest1$x2, dest1$fhat, nlevels=4,
xlim=c(-8,4), ylim=c(-3,0), cex.lab=1.25, col=col,
xlab="GNP", ylab="Unemployed" )
colramp2 = colorRampPalette(c("white", clr[3]))
col <- paste(colramp2(5), "80", sep="") # make transparent
filled.contour(dest2$x1, dest2$x2, dest2$fhat, nlevels=4,
xlim=c(-8,4), ylim=c(-3,0), cex.lab=1.25, col=col,
xlab="GNP", ylab="Unemployed"...