From 7f2130c75282e624144f916fe10a4d7b0efe7deb Mon Sep 17 00:00:00 2001 From: Ben Schneider Date: Tue, 11 May 2021 21:12:54 -0400 Subject: [PATCH] Try to fix R CMD check warning about global variable. --- R/join.R | 4 ++-- man/dplyr_filter_joins.Rd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/R/join.R b/R/join.R index 51e7825..da296b8 100644 --- a/R/join.R +++ b/R/join.R @@ -22,8 +22,8 @@ semi_join.tbl_svy <- function( ...) x <- mutate(x, `___retained` = `___row_number` %in% filtered_vars[['___row_number']]) - x <- filter(x, `___retained`) - x <- select(x, -`___retained`) + x <- filter(x, .data$`___retained`) + x <- select(x, -.data$`___retained`) x diff --git a/man/dplyr_filter_joins.Rd b/man/dplyr_filter_joins.Rd index 9bb3e4e..28c6f15 100644 --- a/man/dplyr_filter_joins.Rd +++ b/man/dplyr_filter_joins.Rd @@ -3,8 +3,8 @@ \name{dplyr_filter_joins} \alias{dplyr_filter_joins} \alias{semi_join} -\title{Filtering joins from dplyr and tidyr} - +\alias{anti_join} +\title{Filtering joins from dplyr} \description{ These are data manipulation functions designed to work on a \code{tbl_svy} object and another data frame or \code{tbl_svy} object.