Displaying 1 result from an estimated 1 matches for "5234767".
2010 Feb 04
4
xyplot 3 panels 3 different Y variables
...ng hormone all on one page, parallel. Note that several of these variables are measured in different units.
? One panel for each outcome variable, arranged one above the other.
? Minimal vertical space between the panels.
To make this concrete, let's generate toy data:
N<-40
set.seed(5234767)
JUNK<-data.frame(Day=1:N)
JUNK$Creatinine<-exp(2*rnorm(nrow(JUNK)))
JUNK$Estrogen<- (sin(JUNK$Day/pi) + 2.5) * ( exp(2*rnorm(nrow(JUNK))) * JUNK$Creatinine )
JUNK$Creatinine[10]<-0.0001
JUNK$Ratio<- JUNK$Estrogen / JUNK$Creatinine
The following traditional graphics commands put an...