tags:

views:

27

answers:

1

Is there any way to set the background color of plots constructed using the base R function persp()?

bg="black" is ignored either when supplied to persp() or previously to par()

Thanks

+2  A: 

I'm not sure what you mean by "ignored" here. A reproducible example would be helpful, something like this:

 par(bg = "black");persp(volcano)
mdsumner
pluteus