Skip to content

Commit

Permalink
Merge pull request #16 from pharmaverse/installed_packages
Browse files Browse the repository at this point in the history
add installed packages section
  • Loading branch information
rossfarrugia authored Nov 2, 2023
2 parents e45debc + 71ee9e1 commit d4a410f
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 d4a410f

Please sign in to comment.