Displaying 1 result from an estimated 1 matches for "count_y_vari".
2010 Feb 07
2
conditioned xyplot, many y variables
...row=c(3,2),mar=c(0,0,0,0)+0.0,oma=c(4,4,4,1),xpd=FALSE, las=0)
varNamesAndLabels<-data.frame(
name=c("z", "QQQ", "ppp")
, label=c("z (mIU/mL)", "QQQ (pg/L)", "ppp (mg/L)")
)
rownames( varNamesAndLabels)<- varNamesAndLabels$name
count_y_variables<-0
for(this_y_name in rownames( varNamesAndLabels) ) {
count_y_variables <- count_y_variables + 1
countSpecies<-0
for(thisSpecies in levels(JUNK$Species)) {
countSpecies<-countSpecies + 1
TEMPORARY<-JUNK[JUNK$Species==thisSpecies,]
if(countSpecies==1) {
plot(JU...