Created
October 25, 2018 13:08
-
-
Save nbenn/86e6585e3014f127d6c5cb30c83d2a96 to your computer and use it in GitHub Desktop.
Ad SO #52974000
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm_tbl_4 <- function(tbl, env) { | |
tbl = deparse(substitute(tbl)) | |
rm(list = tbl, pos = env) | |
} | |
fun_a <- function(dat_tbl) { | |
fun_b(dat_tbl) | |
} | |
fun_b <- function(data_table) { | |
rm_tbl_4(data_table, environment()) | |
} | |
dt <- data.table(a = 1:3, b = 2:4) | |
fun_a(dt) | |
dt |
trafficonese
commented
Oct 25, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment