Dear all,
I'm trying to understand the benefits of here
package. I understand the benefits of project-oriented workflow but how here
package helps with all this? In that vein, are there any benefits to using here
versus simply quotes and tab, that is "tab-autocompletion"
.
So, this
mtcars <- read_csv("tab-autocompletion")
versus this
mtcars <- read_csv(here::here("data", "myfile.csv"))
Thank you!