Hello Quarto

Joscelin’s fav
Author

Dr. Joscelin Rocha-Hidalgo

Published

April 22, 2025

Buy me a coffeeBuy me a coffee


session_info: Print Session Information

Added Feb 2nd, 2022

What is this?

Provides detailed session information, useful for debugging and reproducibility.

  1. 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)

Back to top