wmtsa
Hey Stephen, wavCWT uses the image() function for plotting, so you can use the same color arguments. See ?image. The default option uses a heat color scheme with 12 colors. plot(d,col = heat.colors(12)) You can add colors to have a more smooth plot plot(d,col = heat.colors(30)) or change the color set. plot(d,col = topo.colors(12)) See also ?heat.colors, ?topo.colors, etc. A very nice color scheme is tim.colors() in the fields package. It goes from red (high) to blue (low). Julian > plot(sunspots.cwt,col = topo.colors(12))
stephen sefick wrote:
I would like to change the wavCWT (package wmtsa) plot colors does anyone know how to do this. d = wavCWT(x)# I can provide data but it is a rather large data set plot(d) #default color scheme does not have enough contrast thanks Stephen