sharing session info

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-04-23 14:24:32 +02:00
commit aa94a67707
No known key found for this signature in database
3 changed files with 201 additions and 0 deletions

35
vignettes/session.Rmd Normal file
View file

@ -0,0 +1,35 @@
---
title: "Session info"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{session}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(rmarkdown.html_vignette.check_title = FALSE)
```
```{r setup}
library(FreesearchR)
```
This is the session info on the primary build machine. Inspect loaded packages and the latest build info.
## Platform info
```{r}
FreesearchR:::session_data$platform |> knitr::kable()
```
## Libraries
```{r}
FreesearchR:::session_data$libs|> knitr::kable()
```