Check where your package is installed
find.package("dplyr")
## [1] "C:/Program Files/R/R-4.0.3/library/dplyr"
All projects use the same library path. Then for each project, you need different library dependencies.
Intializing a project
renv::init()
A .
more information can be found in URSA Labs
This example is from Arrow Vignettes
arrow
best when working with big data
Prep
library("arrow", warn.conflicts = FALSE)
library("dplyr", warn.conflicts = FALSE)
check if S3 support is included.