The goal of DBF is to provide dummy DB syntax in namespace to use functions with dplyr
You can install the developed version of DBF from github with:
library(dplyr)
library(DBI)
library(DBF)
conn <- dbConnect(
RPostgres::Postgres(),
host = HOST, # i.e. 'ec2-54-83-201-96.compute-1.amazonaws.com'
port = 5432, # or any other port specified by your DBA
user = 'postgres',
password = 'password'
)
copy_to(conn, test)
list_of_syntax <- get_function(conn)
set_function(list_of_syntax)
tbl(conn, "test") %>%
mutate(date = DATE_TRUCN("day", date))
Tyler Morgan-Wall @tylermorganwall history