csvUploadServer {mmints} | R Documentation |
Server Function for CSV Upload Module
Description
This function defines the server logic for the CSV upload module.
Usage
csvUploadServer(id, vars_title = "Available Variables")
Arguments
id |
A character string that matches the ID used in |
vars_title |
A character string for the title of the variables table. |
Value
A reactive expression containing the uploaded data.
Examples
server <- function(input, output, session) {
csvUploadServer("my_data", "My Variables")
}
[Package mmints version 0.1.0 Index]