export_xlsx {struct} | R Documentation |
Exports a dataset object to an excel file with sheets for data, sample_meta and variable_meta
export_xlsx(object, outfile, transpose = TRUE) ## S4 method for signature 'DatasetExperiment' export_xlsx(object, outfile, transpose = TRUE)
object |
a dataset object |
outfile |
the filename (including path) to write the data to |
transpose |
TRUE (default) or FALSE to transpose the output data |
an excel file with sheets for data and meta data
## Not run: D = iris_DatasetExperiment() # example dataset export_xlsx(D,'iris_DatasetExperiment.xlsx') ## End(Not run)