Wow, that worked liked a charm. I will include the entire working example of
how to remove the outer box without losing the ticks:
test = data.frame(expand.grid(c(1:10), c(1:10)))
z = test[,1] + test[,2]
test = cbind(test, z)
names(test) = c("x", "y", "z")
require(lattice)
wireframe(z ~ x*y, data
@gmail.com [mailto:ila...@gmail.com] On Behalf Of ilai
Sent: Friday, March 23, 2012 11:10 AM
To: Bigelow, Seth W -FS
Cc: r-help@r-project.org
Subject: Re: [R] Remove wireframe outer box but keep ticks
See 'box.3d' in trellis.par.get() :
wireframe(z ~ x*y, data = test,
scales=list(arro
I would like to eliminate the outer box around a lattice wireframe graph, but
the usual recommended solution, which is to assign a color of 'transparent' to
the axis.line parameter,
eliminates ticks if the 'arrows=F' command is used, as shown in the following
example:
test = data.frame(expand.g
I wish to display a single-panel Lattice figure with grouped data and fitted
regression lines. I don't seem to be able to get the
individual regression lines to display, e.g.;
d <- data.frame(q = rep(1:6, each=10), cc = rep(seq(10,100, 10),6))
# create data frame with gr
4 matches
Mail list logo