You can do this in lattice:

library(lattice)
df = data.frame(val = rnorm(100), group = rep(c('x', 'y'), each = 50))
qqmath(~val, groups = group, data = df)

Hope that helps,

Greg

njhuang86 wrote:
Hi all,

Does anyone know how to plot overlapping qqnorm plots on the same window?
Suppose I have data in the vector x and y:

qqnorm(x)
lines(qqnorm(y))

I though these two lines will do the job... However, lines doesn't seem to
work. Anyways, thanks in advance!

--
Greg Hirson
ghir...@ucdavis.edu

Graduate Student
Agricultural and Environmental Chemistry

1106 Robert Mondavi Institute North
One Shields Avenue
Davis, CA 95616

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to