SIPLibrary2: SIPLibrary 2.0 Generator

Description Usage Arguments Value Examples

Description

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.

Usage

1
SIPlibrary2(DATAFRAME, filename, author, METADF = NULL)

Arguments

DATAFRAME

Data.frame containing SIPs.

filename

Character, ending in ".xlsx"

author

Character.

METADF

Data.frame with named rows of same length as DATAFRAME.

Value

Completion notification, file output to WD

Examples

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)

probability-management/RSIPlibrary documentation built on June 2, 2021, 10:19 p.m.