Description Usage Arguments Value Examples
Outputs a data.frame and an optional data.frame containing metadata to a .xlsx format SIPmath Tools readable library file. Allows a user to easily output R SIPs to Excel users.
1 | SIPlibrary2(DATAFRAME, filename, author, METADF = NULL)
|
DATAFRAME |
Data.frame containing SIPs. |
filename |
Character, ending in ".xlsx" |
author |
Character. |
METADF |
Data.frame with named rows of same length as DATAFRAME. |
Completion notification, file output to WD
1 2 3 4 5 6 7 8 9 | testdf <- data.frame(SIP_1 = rnorm(5000),
SIP_2 = rnorm(5000),
SIP_3 = rnorm(5000),
SIP_4 = rnorm(5000),
SIP_5 = rnorm(5000))
testmeta <- sapply(testdf, FUN = summary)
SIPlibrary2(testdf, "finaltesting.xlsx", "Aaron Brown", testmeta)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.