[R] Density plot with lattice?

2010-12-21 Thread Marie-Hélène Hachey
Hi, Is it possible to remove the points at the base of a density plot?I would like to keep only the curves of the plot, not the points. Thank you. Marie-Helene HacheyM.Sc. studentUniversite Laval, Quebec __

Re: [R] Density plot with lattice?

2010-12-21 Thread Dennis Murphy
Hi: Try this: densityplot( ~ height | voice.part, data = singer, layout = c(2, 4), xlab = Height (inches), bw = 5) densityplot( ~ height | voice.part, data = singer, layout = c(2, 4), xlab = Height (inches), bw = 5, plot.points = FALSE) The plot.points argument is