Skip to content

Commit 9e9d8ec

Browse files
remove unused arrange()
1 parent cb6f544 commit 9e9d8ec

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

R/compat-dplyr.R

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ lead <- function(x, n = 1L, default = NA) {
1010
c(x[-seq_len(n)], rep(default, n))
1111
}
1212

13-
14-
arrange <- function(.data, ...) {
15-
ord <- eval(substitute(order(...)), .data, parent.frame())
16-
vec_slice(.data, ord)
17-
}
18-
1913
arrange_pos_id <- function(data) {
2014
pos_id <- data$pos_id
2115
if (is.unsorted(pos_id)) {

0 commit comments

Comments
 (0)