Re: [R] Basic plot density question

2014-06-18 Thread Brian Smith
Thanks Greg! On Wed, Jun 18, 2014 at 11:15 AM, Greg Snow <538...@gmail.com> wrote: > First you should do your best to forget that you ever saw the command > "par(new=T)", rip that page out of any book you saw it in, blacklist > any webpage etc. In general (as you see) it causes more problems th

Re: [R] Basic plot density question

2014-06-18 Thread Greg Snow
First you should do your best to forget that you ever saw the command "par(new=T)", rip that page out of any book you saw it in, blacklist any webpage etc. In general (as you see) it causes more problems than it solves. Now to do what you want there are a couple of options, one of the simplest is

Re: [R] Basic plot density question

2014-06-18 Thread Bert Gunter
Try reading the docs! ?plot.default ... and note the xllim and ylim arguments. Have you read "An Introduction to R" or some other R tutorial. If not, you should do so before posting further. Cheers, Bert Bert Gunter Genentech Nonclinical Biostatistics (650) 467-7374 "Data is not information

[R] Basic plot density question

2014-06-18 Thread Brian Smith
Hi, I wanted to plot two different density profiles. My code looks like: x1 <- rnorm(100,mean=0,sd=1) x2 <- rnorm(100,mean=1,sd=1) plot(density(x1),xlab="",col="red",main="") par(new=T) plot(density(x2),xlab="",col="blue",main="") However, the x-axis values don't match up for the two plots. I