mirror of
https://github.com/msberends/AMR.git
synced 2025-07-09 11:01:57 +02:00
(v1.7.1.9035) dplyr grouping fix on windows?
This commit is contained in:
@ -133,8 +133,8 @@ if (AMR:::pkg_is_available("dplyr")) {
|
||||
first_isolate(info = TRUE))
|
||||
|
||||
# groups
|
||||
x <- example_isolates %>% group_by(ward_icu) %>% mutate(first = first_isolate())
|
||||
y <- example_isolates %>% group_by(ward_icu) %>% mutate(first = first_isolate(.))
|
||||
x <- example_isolates %>% group_by(ward_icu) %>% mutate(first = first_isolate(require_cur_data = TRUE))
|
||||
y <- example_isolates %>% group_by(ward_icu) %>% mutate(first = first_isolate(., require_cur_data = TRUE))
|
||||
expect_identical(x, y)
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user