Description Usage Arguments Value Examples
Function to read the data from the file / only shiny
1 |
file |
list with stores datapath element containing the path to the file |
Returns table with original data structure
1 2 3 4 5 6 7 8 9 10 11 12 13 | jtRaw(input$raw_file)
To get the data in the local session use `data/przyklad1.csv`
from `joint-hubs/sales`. Find more details in `joint-hubs/sales/getappdata.r`
table_jtRaw <- jtRaw(input$raw_file)
table_readcsv <- read.csv("../data/przyklad1.csv",
stringsAsFactors = FALSE) %>%
janitor::clean_names()
identical(table_jtRaw, table_readcsv)
[1] TRUE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.