Open Leprechault opened 2 years ago
you are passing a function and not a dataframe to write.fst
, you can maybe try instead of
stands_sel <- function() dbGetQuery(bq_con, as.character(sqlInput()), stringsAsFactors = T)
to just remove the function call
stands_sel <- dbGetQuery(bq_con, as.character(sqlInput()))
Hi Everyone!!
I'd like to convert a
sql
query from BigQuery tofst
format for more speed in the creation of the plots in Shiny. But when I try to pass the BigQuery data frame tofst
format:I always received as output:
My complete example is:
Please any help with it?