View source: R/writeVarMetadata.R
| writeVarMetadata | R Documentation |
writexlxs: write AnnotatedDataFrame to a xlsx file
writeVarMetadata(x, path = tempfile(fileext = ".xlsx"), overwrite = TRUE)
## Default S3 method:
writeVarMetadata(x, path = tempfile(fileext = ".xlsx"), overwrite = TRUE)
x |
An |
path |
The xlsx file name to be written to. |
overwrite |
Logical, whether the file should be overwritten if it exists. |
An invisible TRUE in case the file is successfully created, else FALSE.
We also tried the writexl package but the comments are not well supported by writexl, therefore we stay with openxlsx
data("ribiosExpressionSet", package="ribiosExpression")
outfile <- tempfile()
writeVarMetadata(ribiosExpressionSet, path=outfile)
writeVarMetadata(phenoData(ribiosExpressionSet), path=outfile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.