-
Notifications
You must be signed in to change notification settings - Fork 2.1k
problem with arrange() #331
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
Comments
Slightly simpler example: library("dplyr")
N <- 20
df <- data.frame(id = 1:N, x = rnorm(N))
df$x[runif(N) < .1] <- NA
tdf <- tbl_df(df)
arrange(tdf, desc(x)) |
When I run :
I've got a fatal error (R session aborted). |
@blaquans I can't reproduce the error, do you still get it with the current dev version ? |
I've got the following error when I try to install the dev version :
|
@blaquans try |
Ok it works ! Thanks |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Sometimes
arrange()
returns a weird output. In this gist file, I've tried to order a dataset according to the x variable. I don't understand why 1.53261062618519 is assumed to be greater than missing values or other values such as 2.18733299301658.The result of
isn't the same of the result as
The text was updated successfully, but these errors were encountered: