3

I have a raster, "cov.all". If I plot this in R using plot(cov.all) I get this image:

cov.all

How can I can I plot the raster without the colour scale?

Thanks for any assistance.

alexwhan
  • 15,636
  • 5
  • 52
  • 66
si_2012
  • 649
  • 1
  • 6
  • 11
  • 3
    Is this from the `raster` package? did you try `plot(cov.all, legend = FALSE)`? – Arun Mar 12 '13 at 12:14
  • 1
    Please make your situation reproducible, i.e. provide us with the data and the code needed to mimic your situation. See http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example for more tips on how to do this. – Paul Hiemstra Mar 12 '13 at 12:22
  • Yes it is. I hadn't tried that as I didn't see that option in the documentation. It works - thanks for your help! – si_2012 Mar 12 '13 at 12:24
  • @si_2012, you can write that as the answer and mark it as answered so that the question remains answered. – Arun Mar 12 '13 at 12:29

1 Answers1

3

From arun, above, the solution to this is plot(cov.all, legend=FALSE)

si_2012
  • 649
  • 1
  • 6
  • 11