标签: r
Wickham_Advanced R提到使用pryr::where()来查找定义名称的环境。例如:
pryr::where()
where("sd") #> <environment: package:stats
但如果我改变了绑定环境:
e <- new.env() e$g <- function () 1 where("g") # Can't find g
似乎pryr::where()对新定义的环境不起作用。是什么原因?我错过了什么?