Re: [R] IMPORTANT - Add a plot to another plot

2010-03-09 Thread Greg Snow
Look at the subplot function in the TeachingDemos package, does that do what you want? -- Gregory (Greg) L. Snow Ph.D. Statistical Data Center Intermountain Healthcare greg.s...@imail.org 801.408.8111 > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r- >

Re: [R] IMPORTANT - Add a plot to another plot

2010-03-09 Thread jim holtman
try: plot(0) # first plot par(new=TRUE) plot(1) # second plot # need to make sure ranges agrees and whether to plot axes or not. Or you probably really want to use 'lines'/'points' On Tue, Mar 9, 2010 at 7:52 AM, wrote: > > I have a graphic that I design with the command "plot", and I want t