session_info: Print Session Information
Added Feb 2nd, 2022
What is this?
Provides detailed session information, useful for debugging and reproducibility.
- Link to function: https://rdrr.io/cran/sessioninfo/man/session_info.html
*** What I like to use if I want a list of all packages with an asterisk if I have them in this script: library(sessioninfo)
library(sessioninfo) session_info(pkgs=“!loaded”, to_file = TRUE)
** What I like to use for reports and sharing scripts:
library(sessioninfo) session_info(pkgs=“!attached”, to_file = TRUE)