write.excel | R Documentation |
This function exports a data.frame to a Excel file.
write.excel(df, tags = NULL, colors = NULL, tabname = "foo", filename = NULL)
df |
An data.frame |
tags |
xxx |
colors |
xxx |
tabname |
xxx |
filename |
A character string for the name of the Excel file. |
A Excel file (.xlsx)
Samuel Wieczorek
utils::data(Exp1_R25_pept, package='DAPARdata') df <- Biobase::exprs(Exp1_R25_pept[1:100]) tags <- GetMetacell(Exp1_R25_pept[1:100]) colors <- list('missing POV' = "lightblue", 'missing MEC' = "orange", 'recovered' = "lightgrey", 'identified' = "white", 'combined' = "red") write.excel(df, tags, colors, filename = 'toto')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.