Skip to content

Commit

Permalink
Import na.omit
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasp85 committed Mar 11, 2017
1 parent ca9fa16 commit 7eb31bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ S3method(left_join,tbl_graph)
S3method(mutate,tbl_graph)
S3method(n_groups,grouped_tbl_graph)
S3method(rename,tbl_graph)
S3method(right_join,tbl_graph)
S3method(sample_frac,tbl_graph)
S3method(sample_n,tbl_graph)
S3method(select,tbl_graph)
Expand Down Expand Up @@ -58,7 +59,6 @@ export(num_range)
export(one_of)
export(rename)
export(right_join)
export(right_join.tbl_graph)
export(sample_frac)
export(sample_n)
export(select)
Expand Down Expand Up @@ -132,5 +132,6 @@ importFrom(rlang,as_symbol)
importFrom(rlang,tidy_eval)
importFrom(rlang,tidy_quote)
importFrom(rlang,tidy_quotes)
importFrom(stats,na.omit)
importFrom(tibble,as_tibble)
importFrom(utils,head)
1 change: 1 addition & 0 deletions R/joins.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ left_join.tbl_graph <- function(x, y, by = NULL, copy = FALSE, suffix = c(".x",
dplyr::left_join

#' @importFrom dplyr right_join
#' @importFrom stats na.omit
#' @export
right_join.tbl_graph <- function(x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ...) {
d_tmp <- as_tibble(x)
Expand Down

0 comments on commit 7eb31bb

Please sign in to comment.