I have data in tab delimited format with nearly 400 columns filled with values ie
X Y Z A B C
2.34 .89 1.4 .92 9.40 .82
6.45 .04 2.55 .14 1.55 .04
1.09 .91 4.19 .16 3.19 .56
5.87 .70 3.47 .80 2.47 .90
Now I want visualize the data using box plot method.Though it is difficult to view 400 in single odf,I want split into 50 each.ie(50 x 8).Here is the code I used:
boxplot(data[1:50],xlab="Samples",xlim=c(0.001,70),log="xy",
pch='.',col=rainbow(ncol(data[1:50)))
but I got the following error:
In plot.window(xlim = xlim, ylim = ylim, log = log, yaxs = pars$yaxs) : nonfinite axis limits [GScale(-inf,4.4591,2, .); log=1]
I want to view the box plots for 400 samples with 50 each in a 8 different pdf....Please do help me in getting better visualization.

raw.expressionabove? Is it the same asdata? Using colours to differentiate categories is a good idea, but if that command comes out torainbow(400)then it will be pretty but not actually be very useful for differentiating the data ... What is the structure of the columns not represented above? Are they all unique, or do categories A, B, C, X, Y, Z, ... repeat? – Ben Bolker Nov 4 '11 at 15:28