Reverse colors in Contour Plot Platform
I have a script which iterates over several columns and generates contour plots. If the column values are negative I want to reverse the contour colours, so I set a variable like this: if(col mean( col1 ) < 0, revcols = 1, revcols = 0);
Contour Plot(
...
Reverse Colors( revcols ),
...However, the problem I have is that the contour plot is now always reversed - it seems to ignore the value of r...
vince_faller