top | item 43653052

(no title)

tylermw | 10 months ago

Funny you mention namespacing: R 4.5.0 was just released today with the new `use()` function, which allows you import just what you need instead of clobbering your global namespace, equivalent to python’s `from x import y` syntax.

e.g. avoid dplyr overriding base::filter

use(“dplyr”, c(“mutate”, “summarize”))

discuss

order

kgwgk|10 months ago

The release notes say:

    (Actually already available since R 4.4.0.)