Hello,
I'm looking for a good tutorial so that the data imported into a shiny app can feed a dataframe. I mainly want to filter csv data from widget. At the end they will have to be displayed on a geojson map background (I don't know how I'm going to do it yet). So to start what is the best way to filter the data from my uploaded csv?
We assume that the header contains name;meta1;meta2;meta3;date_start;date_end;value1;value2
For example, I would like to keep name, value1 and meta2 data for certain dates (date_start to date_end)
Regards
For the moment I manage to load the csv and here is my starting point in the server part :
output$contents <- renderTable({
inFile <- input$file
if (is.null(inFile))
return(NULL)
read.csv(inFile$datapath, header = input$header)
})