[R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Öhagen Patrik
I have, say, three plots with several medical terms on the y-axis plotted against HR's on a log-scaled x-axis. In order to highlight the time profile for the different plots, I would like to merge (put them next to each other, if that makes sense) together the log scaled x-axises and present

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Jim Lemon
On 05/16/2013 09:50 PM, Öhagen Patrik wrote: I have, say, three plots with several medical terms on the y-axis plotted against HR's on a log-scaled x-axis. In order to highlight the time profile for the different plots, I would like to merge (put them next to each other, if that makes sense)

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread John Kane
://github.com/hadley/devtools/wiki/Reproducibility John Kane Kingston ON Canada -Original Message- From: patrik.oha...@mpa.se Sent: Thu, 16 May 2013 11:50:20 + To: r-help@r-project.org Subject: [R] Three plots with logged X-axis in the same plot I have, say, three plots

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Öhagen Patrik
www.lakemedelsverket.se -Ursprungligt meddelande- Från: Jim Lemon [mailto:j...@bitwrit.com.au] Skickat: den 16 maj 2013 14:13 Till: Öhagen Patrik Kopia: r-help@r-project.org Ämne: Re: [R] Three plots with logged X-axis in the same plot On 05/16/2013 09:50 PM, Öhagen Patrik wrote: I have

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Öhagen Patrik
[mailto:jrkrid...@inbox.com] Skickat: den 16 maj 2013 14:53 Till: Öhagen Patrik; r-help@r-project.org Ämne: RE: [R] Three plots with logged X-axis in the same plot Can you supply us with a bit of sample data? It's not clear from your description of the problem if you are working with equivalent x -scales

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Duncan Murdoch
On 16/05/2013 7:50 AM, Öhagen Patrik wrote: I have, say, three plots with several medical terms on the y-axis plotted against HR's on a log-scaled x-axis. In order to highlight the time profile for the different plots, I would like to merge (put them next to each other, if that makes sense)

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread John Kane
-Original Message- From: patrik.oha...@mpa.se Sent: Thu, 16 May 2013 13:09:26 + To: jrkrid...@inbox.com, r-help@r-project.org Subject: SV: [R] Three plots with logged X-axis in the same plot Hi John, Thank you for your input! The thing is that the graph would be to messy if I plotted

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Jim Lemon
On 05/16/2013 11:07 PM, Öhagen Patrik wrote: Hi Jim,Thank you for your input! I am working with the text and arrow command in each of the graphs. I think it would be far to messy to plot them all in one graph (50+ point estimates and confidence intervals). par(mfrow=c(1,3)) is a step in the

Re: [R] Three plots with logged X-axis in the same plot

2013-05-16 Thread Duncan Mackay
Hi Patrik, Using plot you could give the panel extra height by changing the cex of the labels etc and mai of the top expecially. Otherwise you could use xyplot and split the data into 3 - lattice with panels can be space saving dat - data.frame(max = hr_max, min=hr_min, med = med_names)