Skip to content

Commit

Permalink
fix changing column names of input tables
Browse files Browse the repository at this point in the history
  • Loading branch information
zander-prinsloo committed Feb 26, 2024
1 parent 144231a commit c897e83
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions R/joyn-merge.R
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,8 @@ joyn <- function(x,
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
start_joyn <- Sys.time()
# copy objects if data.tables
if (any(class(x) == "data.table")) {
x <- copy(x)
}
if (any(class(y) == "data.table")) {
y <- copy(y)
}
x <- copy(x)
y <- copy(y)

## X and Y -----------
check_xy(x,y)
Expand Down

0 comments on commit c897e83

Please sign in to comment.