as.matrix.mlist {mscalib} | R Documentation |
Turns the caliblist into a matrix
## S3 method for class 'mlist': as.matrix(x)
x |
caliblist |
matrix |
matrix |
Witold Wolski wolski@molgen.mpg.de
data(mvl) mvl<-mvl[1:100] data(cal) test<-getintcalib(mvl,cal,error=500) tmp<-as.matrix(test) colnames(tmp) dim(tmp) data(mvl) tmp<-as.matrix(mvl) print(colnames(mvl)) plot(tmp[,"lengthmv"],tmp[,"mass.Min."])