Displaying 1 result from an estimated 1 matches for "thisspecies".
2010 Feb 07
2
conditioned xyplot, many y variables
...uot;)
, 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(JUNK$TIME, JUNK[[this_y_name]], xlab="", ylab="", type="n",xaxt='n', log="y")
mtext( varNamesAndLab...