-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Missing docs for S3 methods? #214
Labels
Milestone
Comments
DoD:
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Closed
|
I don't follow: options(conflicts.policy = list(warn = FALSE))
library(dplyr)
dplyr:::methods_generic("mutate")
#> # A tibble: 1 × 7
#> generic class package topic visible source isS4
#> <chr> <chr> <chr> <chr> <lgl> <chr> <lgl>
#> 1 mutate data.frame dplyr <NA> FALSE registered S3method FALSE
dplyr:::methods_generic("select")
#> # A tibble: 1 × 7
#> generic class package topic visible source isS4
#> <chr> <chr> <chr> <chr> <lgl> <chr> <lgl>
#> 1 select data.frame dplyr <NA> FALSE registered S3method FALSE
library(dbplyr)
library(dtplyr)
library(dm)
dplyr:::methods_generic("mutate")
#> # A tibble: 5 × 7
#> generic class package topic visible source isS4
#> <chr> <chr> <chr> <chr> <lgl> <chr> <lgl>
#> 1 mutate data.frame dplyr <NA> FALSE registered… FALSE
#> 2 mutate dm dm <NA> FALSE registered… FALSE
#> 3 mutate dm_zoomed dm dplyr_table_manipulation FALSE registered… FALSE
#> 4 mutate dtplyr_step dtplyr mutate.dtplyr_step FALSE registered… FALSE
#> 5 mutate tbl_lazy dbplyr mutate.tbl_lazy FALSE registered… FALSE
dplyr:::methods_generic("select")
#> # A tibble: 5 × 7
#> generic class package topic visible source isS4
#> <chr> <chr> <chr> <chr> <lgl> <chr> <lgl>
#> 1 select data.frame dplyr <NA> FALSE registered… FALSE
#> 2 select dm dm <NA> FALSE registered… FALSE
#> 3 select dm_zoomed dm dplyr_table_manipulation FALSE registered… FALSE
#> 4 select dtplyr_step dtplyr select.dtplyr_step FALSE registered… FALSE
#> 5 select tbl_lazy dbplyr select.tbl_lazy FALSE registered… FALSE Created on 2024-11-21 with reprex v2.1.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think it would be useful to document
mutate()
,filter()
etc methods so its obvious that duckplyr supports them. This would also be a good place to document any differences in behaviour.The text was updated successfully, but these errors were encountered: