| exportDataMatrix,proFIAset-method {proFIA} | R Documentation |
Export the data matrix from a proFIAset object, to
be used for statistical analysis.
## S4 method for signature 'proFIAset' exportDataMatrix(object, filename = NULL)
object |
A proFIAset object. |
filename |
If not NULL the result will be written in filename as a tabular separated values file. |
A matrix with dimension samples x variables.
if(require(plasFIA)){
data(plasSet)
dm<-exportDataMatrix(plasSet)
head(dm)
}