Skip to content
Snippets Groups Projects
Verified Commit 1823901f authored by Ruben van Dijk's avatar Ruben van Dijk
Browse files

appendPlot uses appendPlotly.

parent f5a18103
Branches
No related tags found
No related merge requests found
Pipeline #3275 passed
......@@ -18,12 +18,12 @@ doId <- function(input) {
if(is.null(dates_to_drop)) dates_to_drop <- ""
response <- list()
appendPlot <- function(item) {
response <<- c(response, list(ggplotly(item)))
}
appendPlotly <- function(item) {
response <<- c(response, list(item))
}
appendPlot <- function(item) {
appendPlotly(ggplotly(item))
}
dates_to_drop=as.list(strsplit(dates_to_drop, ","))[[1]]
dates_to_drop=strptime(dates_to_drop, format="%Y-%m-%d")
dates_to_drop=ymd(dates_to_drop)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment