R studio packages loading

Hi, I have recently updated the version of R and R studio and now every time I open the software I have to re-load all the packages required again and again. How can I change that? I want the packages loaded all the time until I uninstall. Is that possible on this version?

System Information:

  • RStudio Edition: Desktop
  • RStudio Version: 1.2.1335
  • OS Version: Windows 8
  • R Version: 3.5.3 (2019-03-11)

Are you talking about loading packages with library()?, if so, this is just the way R works you have to load packages on each new session, you can automate this process putting your library calls in your .Rprofile file but it is not considered a good practice because it could cause reproducibility issues.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.