R one liner: Correlation matrices
I have seen many plots of correlation matricies using rainbow or heat colors and therefore not indicating the zero crossing. E.g.

Instead I would like to see this:
library(fields)
cormat = cor(X)
image.plot(cormat,zlim=c(-1,1),col=colorRampPalette(c("red","white","green"))(49))

totally agree.