It's quite common to use heat/contour maps when presenting time-frequency EEG findings. The colour scheme often chosen (and one that I like and use) is the "jet" colour scheme (see e.g., google image search time-frequency EEG). I'm wondering if there are any better colour schemes for presenting these plots, and/or guidelines for the presentation of such maps.
e.g., from R base library
#Volcano
x <- 10*(1:nrow(volcano))
y <- 10*(1:ncol(volcano))
image(x, y, volcano, col = terrain.colors(100), axes = FALSE)
# With Jet colours
jet.colors <- colorRampPalette(c("midnightblue","blue", "cyan","green1", "yellow","orange","red", "darkred"), space="Lab")
image(x, y, volcano, col = jet.colors(100), axes = FALSE)






jet. The only reason anyone uses it is because it's the default in Matlab. – endolith Feb 26 '13 at 04:20