-
Notifications
You must be signed in to change notification settings - Fork 31
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
dplyr 1.0.0 update throwing error in plot_compare_stage #270
Comments
yucky error. is it in the master version or the ggplot update branch? or both? |
ggplot update branch only. (fyi, the master branch still has dependencies on GLMr) There have been lots of dplyr issues opened in the last week, so I'm just going to wait on this for a little bit. |
I ran into this on the master branch today too |
I get it when attempting to |
🤕 I'll look into it this week. |
Nevermind me saying it was in the master - the error was actually something I hit after |
Good! |
Figured it out (or at least part of it). In the
|
This bug is related to the issues in #275. library(dplyr)
data(iris)
# a `data.frame` object
class(iris)
out <- iris %>%
group_by(Species) %>%
summarise(count = n())
# a `tibble` object
out The output: > library(dplyr)
>
> data(iris)
>
> # a `data.frame` object
> class(iris)
[1] "data.frame"
>
> out <- iris %>%
+ group_by(Species) %>%
+ summarise(count = n())
>
> # a `tibble` object
> out
# A tibble: 3 x 2
Species count
<fct> <int>
1 setosa 50
2 versicolor 50
3 virginica 50 |
With the new dplyr update v.1.0.0, get the following error:
This is traced back to
vec_rbind
in the vctrs package.I actually think this might be a dplyr bug... so it might sort itself out.
Until then, keep the old versions of the following packages:
We might have some other dplyr errors in other functions as well
The text was updated successfully, but these errors were encountered: