Accessing data as data.frames in R
con <- nuvolos::get_connection()
data <- dplyr::tbl(con, "test")
data %>% dplyr::select(V1, V2) %>% dplyr::filter(V2 > 0)SELECT V1, V2 FROM "test"
WHERE V2 > 0;Last updated
Was this helpful?
con <- nuvolos::get_connection()
data <- dplyr::tbl(con, "test")
data %>% dplyr::select(V1, V2) %>% dplyr::filter(V2 > 0)SELECT V1, V2 FROM "test"
WHERE V2 > 0;Last updated
Was this helpful?
Was this helpful?