ddediu / AdhereR

Computation of adherence to medications from Electronic Healthcare Data in R
25 stars 6 forks source link

Use `evalq` and not `eval` in STUpump #155

Open ddediu opened 3 years ago

ddediu commented 3 years ago
# The safe eval function (use evalq to avoid searching in the current environment):
# [should use used directly in the code not as function call]
#.safe_eval <- function(x) evalq(x, env = .safe_env);

so replace all .safe_eval() by direct calls to evalq(CODE, env = .safe_env)

See the medication groups for a working example