-
Notifications
You must be signed in to change notification settings - Fork 633
Dplyr 1.0 #1821
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
Merged
Dplyr 1.0 #1821
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
9a63ed0
update dplyr functions to use non-standard evaluation
faaad0b
Typo: unquote rlang::sym
julistanley 7223031
Same fix as previous commit (d2bc92395bd4c5a393616dd605e679035323a15f)
a214b28
missed an add --> .add
ff08bf4
lapply(vars, sym)-->syms(vars)
julistanley b7b94ef
Revert imports.R
07ce795
Use group_by_add; dots_as_quosures
38dce09
as_quosure --> new_quosure
julistanley 0fd2d87
Remove redundant add arguments to group_by_add
10c3a78
Proper registration plotly methods for dplyr generics
cpsievert 121012a
ensure that crosstalk set attribute is preserved when applying dplyr …
cpsievert 027554d
make highlight_key() an S3 generic that understands plotly objects
cpsievert e9c3f77
review feedback
cpsievert e3a96df
clean-up docs
cpsievert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.onLoad <- function(...) { | ||
# These generics are defined in R/plotly_data.R | ||
dplyr_generics <- c( | ||
"groups", "ungroup", "group_by", "summarise", "mutate", "do", "arrange", | ||
"select", "filter", "distinct", "slice", "rename", "transmute" | ||
) | ||
dplyr_generics <- paste0("dplyr::", dplyr_generics) | ||
for (generic in dplyr_generics) { | ||
vctrs::s3_register(generic, "plotly") | ||
if (generic %in% c("dplyr::groups", "dplyr::ungroup")) { | ||
next | ||
} | ||
vctrs::s3_register(paste0(generic, "_"), "plotly") | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.