Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-20 Thread Boris.Vasiliev
...@gene.com; r-help-r-project.org r-help@r-project.org Sent: Tuesday, February 19, 2013 9:05:17 PM Subject: Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes Duncan and Bert, Thank you very much for your help with my question. It's very much appreciated. I used your

Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-19 Thread Boris Vasiliev
.   From: Bert Gunter gunter.ber...@gene.com Cc: mac...@northnet.com.au mac...@northnet.com.au; r-help@r-project.org r-help@r-project.org Sent: Monday, February 18, 2013 1:09:10 PM Subject: Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes Boris: If I

[R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-18 Thread Boris Vasiliev
Hi Duncan, Thank you for quick reply. I am not sure that your solution solves the problem. If I use useOuterStrips(dotplot(count ~ subject|risk*treatment,df)) the order of subjects and panel y-limits in each panel are A, B, BB, CCC, DD, . However, the order of subjects and y-limits

Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-18 Thread Bert Gunter
Boris: If I understand you correctly, you wish to set panel limits by row. I know of no slick way of doing this (others may), as what is in a row can change depending on layout and how you determine the scale for the rows' contents may depend on the application context. So I would do it

Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-18 Thread Boris Vasiliev
-help@r-project.org Sent: Monday, February 18, 2013 1:09:10 PM Subject: Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes Boris: If I understand you correctly, you wish to set panel limits by row. I know of no slick way of doing this (others may), as what is in a row

Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-18 Thread Duncan Mackay
or tomorrow. Regards, Boris. From: Bert Gunter gunter.ber...@gene.com Cc: mac...@northnet.com.au mac...@northnet.com.au; r-help@r-project.org r-help@r-project.org Sent: Monday, February 18, 2013 1:09:10 PM Subject: Re: [R] lattice 3x3 plot: force common y-limits

[R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-15 Thread Boris.Vasiliev
Good afternoon, I would like to ask for help in controlling y-axis limits and labels in lattice doplots. Unfortunately, the problem is somewhat convoluted, please bear with the long explanation. I would like to create a 3x3 lattice of dotplots, say subject ~ count. The plot is conditioned on

Re: [R] lattice 3x3 plot: force common y-limits accross rows and align x-axes

2013-02-15 Thread Duncan Mackay
Hi Boris Not sure what you mean exactly try library(latticeExtra) useOuterStrips(dotplot(count ~ subject|risk*treatment,df)) if you want to change the order of the subjects in each panel and an index column and plot the index column instead of subject and change the scales to suit. HTH