Marco Chiarandini
2005-May-11 17:35 UTC
[R] wireframe (reloaded): how to remove the frame around my plot?
Hello, I would like to remove the frame from wireframe, but that one only. I am currently doing trellis.par.set("axis.line",list(col=NA,lty=1,lwd=1)) but this has the flaw that also the tick lines of the axes disapper. I read all the thread with the same titlee of this message appeared sometime ago on this list and tried all the methods there suggested but I am still facing the problem. Is there any possible solution? Thank you for your consideration. Marco ------------------------------------------------------------------- Marco Chiarandini, Fachgebiet Intellektik, Fachbereich Informatik, Technische Universit??t Darmstadt, Hochschulstra??e 10, D-64289 Darmstadt - Germany, Office: S2/02 Raum E312 Tel: +49.(0)6151.166802 Fax: +49.(0)6151.165326 email: machud at intellektik.informatik.tu-darmstadt.de web page: http://www.intellektik.informatik.tu-darmstadt.de/~machud
Deepayan Sarkar
2005-May-11 18:50 UTC
[R] wireframe (reloaded): how to remove the frame around my plot?
On Wednesday 11 May 2005 12:35, Marco Chiarandini wrote:> Hello, > > > I would like to remove the frame from wireframe, but that one only. > > I am currently doing > > trellis.par.set("axis.line",list(col=NA,lty=1,lwd=1)) > > but this has the flaw that also the tick lines of the axes disapper.I should add a separate setting for the default cloud/wireframe scales. For now, you should get what you want with wireframe(volcano, scales = list(col = 1, arrows = FALSE)) Deepayan