We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
collect()
st_as_sf()
copy_to()
Prepare for release:
devtools::build_readme()
usethis::use_cran_comments()
devtools::check(remote = TRUE, manual = TRUE)
devtools::check_win_devel()
rhub::check_for_cran()
cran-comments.md
Submit to CRAN:
usethis::use_version('minor')
devtools::submit_cran()
Wait for CRAN...
usethis::use_news_md()
usethis::use_github_release()
usethis::use_dev_version()
haven't checked everything but seems ok
checked explicitly:
The text was updated successfully, but these errors were encountered:
the verbs work fine, haven't checked set (union, setdiff, intersect, etc) not sure how
library(lazysf) library(dplyr) # tbl, collapse, collect, do, head, pull # arrange, distinct, filter, group_by, mutate, select, rename, rename_with, relocate # slice_min, slice_max, slice_sample # inner_join, left_join, right_join, full_join, semi_join, anti_join, # # intersection, union, union_all, setdiff # -- can't work # copy_to db <- dbConnect(SFSQL(), "inst/extdata/multi.gpkg") tbl(db, "centre") %>% dplyr::filter(state %in% c("Tasmania", "Victoria")) %>% dplyr::select(state) %>% dplyr::inner_join(tbl(db, "state"), c("state" = "NAME")) %>% # rename(here = state) #head(2) %>% collect() #rename_with(~paste(.x, "abc", sep = "_")) # mutate(a = 1) %>% relocate(a) ## doesn't work with geom group_by(state) %>% slice_sample(state, n= 2) tbl(db, "centre") %>% union( tbl(db, "state"),c("state" = "NAME") )
Sorry, something went wrong.
No branches or pull requests
collect()
is special because ofst_as_sf()
subtlety?copy_to()
- i.e. not possible atmPrepare for release:
devtools::build_readme()
usethis::use_cran_comments()
devtools::check(remote = TRUE, manual = TRUE)
devtools::check_win_devel()
rhub::check_for_cran()
cran-comments.md
Submit to CRAN:
usethis::use_version('minor')
devtools::submit_cran()
Wait for CRAN...
usethis::use_news_md()
usethis::use_github_release()
usethis::use_dev_version()
passing arguments to st_read
haven't checked everything but seems ok
checked explicitly:
The text was updated successfully, but these errors were encountered: