Skip to content

Wrapper around an ODBC connection to SnowflakeDB and dbplyr backend.

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

ndiquattro/flaky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flaky

The goal of flaky is to provide a dplyr backend and various helpers for using Snowflake with R. You may know about Snowflake’s similar package dplyr.snowflakedb, but that requires rJava, a notriously difficult package to use. Flaky is meant to be use with Snowflake’s ODBC drivers which work well within the Rstudio environment, once you get them installed.

Installation

Currently, flaky is only available through GitHub with:

# install.packages("remotes")
remotes::install_github("ndiquattro/flaky")

Example

library(dplyr)
library(flaky)

con <- flaky_connect("snowflake_dsn")

con %>% 
  tbl(dbplyr::in_schema("schema", "table")) %>% 
  filter(coolness > 10, str_detect(rpackages, "flak")) %>% 
  collect()

About

Wrapper around an ODBC connection to SnowflakeDB and dbplyr backend.

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published

Languages