Skip to content

Commit d6d5bfe

Browse files
committed
Add dplyr:: qualification to two function calls
1 parent 371fc04 commit d6d5bfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/moe.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ mr_moe_single <- function(res, rf) {
210210
)
211211
return(d)
212212
}) %>%
213-
bind_rows %>%
214-
arrange(desc(MOE))
213+
dplyr::bind_rows() %>%
214+
dplyr::arrange(desc(MOE))
215215
if ("MOE" %in% names(res$estimates)) {
216216
message("Overwriting previous MOE estimate")
217217
res$estimates <- subset(res$estimates, select = -c(MOE, method2))

0 commit comments

Comments
 (0)