Hi!.
process_map give warning concerning new conception in rlang:
m2 %>%
+ processmapR::process_map(type = processmapR::frequency("relative_case"))
Warning message:
Prefixing `UQ()` with the rlang namespace is deprecated as of rlang 0.3.0.
Please use the non-prefixed form or `!!` instead.
# Bad:
rlang::expr(mean(rlang::UQ(var) * 100))
# Ok:
rlang::expr(mean(UQ(var) * 100))
# Good:
rlang::expr(mean(!!var * 100))
This warning is displayed once per session.
Hi!. process_map give warning concerning new conception in rlang: