I keep running into problems with conflict between here::here
and lubridate::here
. lubridate::here
has been deprecated since 1.5.6 but is still around. So I have to remember to put library(here)
last (or to write here::here
... the error message if I don't is:
Error in here("some_filename") : unused argument ("some_filename")
Other than managing the load order, any advice on how to avoid this (can one load a library but not its deprecated functions?) I'm assuming that lubridate::here
will actually go at some point, so that'll take care of it ...