J'ai une fonction définie comme
myFun <- function(x, y, ...) {
# using exists
if (exists("z")) { print("exists z!") }
# using missing
try(if (!missing("z")) { print("z is not missing!") }, silent = TRUE)
# using get
try(if (get("z")) { print("get z!") }, silent = TRUE)
# anotherFun(...)
}
Dans cette fonction, je veux vérifier si l'utilisateur entre "z" dans la liste des arguments. Comment je peux faire ça ? J'ai essayé exists("z")
, missing("z")
, et get("z")
et aucun d'entre eux ne fonctionne.