Skip to content

Commit

Permalink
add installed packages section
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelru committed Nov 2, 2023
1 parent e45debc commit 71ee9e1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions session.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
title: "Session Info"
---

# Session Info
```{r sessioninfo, message=FALSE}
sessionInfo()
```

# Installed Packages

```{r installedpackages, message=FALSE}
knitr::kable(installed.packages()[, c("Package", "Version")], row.names = FALSE)
```

0 comments on commit 71ee9e1

Please sign in to comment.