IPSSMread | R Documentation |
Function that reads the user input data and performs some validation for the presence, format, and values of the input data.
IPSSMread(path.file, sheet = 1)
path.file |
path to the input data file. Allowed formats are .csv, .tsv, .xls, and .xlsx. |
sheet |
sheet number for excel format input file. Default is 1. |
A patient input data.frame
.
path.file <- system.file("extdata", "IPSSMexample.csv", package = "ipssm") dd <- IPSSMread(path.file) print(dd) path.file2 <- system.file("extdata", "IPSSMexample.xlsx", package = "ipssm") dd2 <- IPSSMread(path.file2, sheet = 2) # equivalent
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.