Displaying 1 result from an estimated 1 matches for "numberofchromatograms".
2008 Feb 04
1
Concatenation and Evaluation
...displayed.
Here's the problem:  I want to be able to set up a loop in which use  
"file" as the base name then concatenate the number that follows  
after it as the value at order.dendrogram[i] in a plot function.  So  
something like:
assume there is a dendrogram called peak.dend
numberOfChromatograms<-20
i<-1
ord<-order.dendrogram(peak.dend)
while(i<=numberOfChromatograms){
plot(file[ord[i])
i<-i+1
}
I know that this particular plot function won't work, but for the  
purposes of this assume that it would if I just put in the number as  
opposed to ord[i].  But when I try th...