Re: [R] grayscale wireframe??

2010-07-07 Thread Allan Engelhardt
A standalone example is always appreciated (cf. the posting guide) but try and see if help(gray.colors, package=grDevices) is the sort of thing you are looking for. Hope this helps Allan On 06/07/10 23:30, Marlin Keith Cox wrote: I need grayscale formatting for a wireframe. The only

Re: [R] grayscale wireframe??

2010-07-07 Thread Sebastien Guyader
With grDevices package, I do the following to generate a greyscale: newcols - colorRampPalette(c(white, black)) #generates palette from white to black #OR newcols - colorRampPalette(c(grey90, grey10)) #generates palette frome light to dark grey for better visibility Then in the wireframe()