You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started writing tbl_pd methods for dplyr verbs so that pdeclare status is preserved when using non-pmdplyr functions, and pdeclare status is dropped if the .i or .t variables are removed. The goal is to eventually have the full list of dplyr verbs covered, as well as as many other methods as possible. So the to-do is:
Write tbl_pd methods for all dplyr verbs
Figure out which non-dplyr functions should also have methods
Write methods for all of those too.
The text was updated successfully, but these errors were encountered:
83e2a40 fills in the major dplyr verbs, other than the scoped variants. Next up are the scoped variants, and rewriting what's there so it doesn't use :::
108e3c6 includes all scoped variants and all major dplyr verbs except bind_rows which for some reason refuses to call bind_rows.tbl_pd (perhaps because it allows a list first argument?), also fixes other minor issues.
I've started writing
tbl_pd
methods fordplyr
verbs so thatpdeclare
status is preserved when using non-pmdplyr
functions, andpdeclare
status is dropped if the.i
or.t
variables are removed. The goal is to eventually have the full list ofdplyr
verbs covered, as well as as many other methods as possible. So the to-do is:tbl_pd
methods for alldplyr
verbsdplyr
functions should also have methodsThe text was updated successfully, but these errors were encountered: