Skip to content

Commit

Permalink
improve formatting of package dependencies (#170)
Browse files Browse the repository at this point in the history
just a suggestion, mainly to get rid of the `#>` commenting which I suspect many users will not be familiar with
  • Loading branch information
cjyetman authored Oct 15, 2024
1 parent a62a274 commit a973147
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/cookbook.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -223,15 +223,15 @@ pak::pak("RMI-PACTA/pacta.multi.loanbook")

The `pacta.multi.loanbook` package depends on a number of other R packages. These dependencies will be installed automatically when you install the `pacta.multi.loanbook` package. The required packages are:

```{r imports, echo = FALSE}
```{r imports, echo = FALSE, results = 'asis'}
cat(utils::packageDescription("pacta.multi.loanbook")[["Imports"]])
```

### Suggested R packages

The suggested packages are not required to run the analysis, but they are used in the examples and vignettes provided with the package:

```{r suggests, echo = FALSE}
```{r suggests, echo = FALSE, results = 'asis'}
cat(utils::packageDescription("pacta.multi.loanbook")[["Suggests"]])
```

Expand Down

0 comments on commit a973147

Please sign in to comment.