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
data(Exp1_R25_pept, package="DAPARdata")
df <- Biobase::exprs(Exp1_R25_pept[seq_len(100)])
tags <- GetMetacell(Exp1_R25_pept[seq_len(100)])
colors <- list(
"Missing POV" = "lightblue",
"Missing MEC" = "orange",
"Quant. by recovery" = "lightgrey",
"Quant. by direct id" = "white",
"Combined tags" = "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.