search for: fieldtrial

Displaying 1 result from an estimated 1 matches for "fieldtrial".

2009 Oct 14
1
Plot overview xy plots from data frame?
...all combinations. It can be done manually, but creating 256 plots by hand takes time... I guess I have to iterate through the data frame, but I'm not used to do that with R. Below I've written my thoughts, trying to combine my knowledge in Java and R, just to give you the idea: pdf("FieldTrial0809Overview.pdf") int colWidth = fieldTrial[0].length; for(i=0, i<colWidth, i++) { for(j=0, j<colWidth, j++) { String colI=get.fieldTrial$i; String colJ=get.fieldTrial$j; plot(fieldTrial$i~fieldTrial$j, main=colI + " vs " + colJ, xlab=colI, y...