Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reconcile skeleton.Rmd files #204

Merged
merged 4 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
simplify visc_empty package dependencies
  • Loading branch information
kelliemac committed Jul 24, 2024
commit 660e9af3d48780c0a7bf35ed66e0334ff43a99b3
5 changes: 3 additions & 2 deletions inst/rmarkdown/templates/visc_empty/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ library(VISCfunctions)
check_pandoc_version()

# packages installed from CRAN
packages_needed <- c("conflicted", "tidyverse", "knitr", "kableExtra", "rprojroot", "remotes")
packages_needed <- c("conflicted", "dplyr", "knitr", "kableExtra", "rprojroot")
install_load_cran_packages(packages_needed)

# knitr options
Expand Down Expand Up @@ -135,7 +135,8 @@ kable(
```{r Software-Package-Version-Information, results="asis", warning=kable_warnings}
kable(
my_session_info$packages_table,
format = output_type, booktabs = TRUE,
format = output_type,
booktabs = TRUE,
linesep = "",
caption = "Reproducibility software package version information"
) %>%
Expand Down
3 changes: 2 additions & 1 deletion inst/rmarkdown/templates/visc_report/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ kable(
```{r Software-Package-Version-Information, results="asis", warning=kable_warnings}
kable(
my_session_info$packages_table,
format = output_type, booktabs = TRUE,
format = output_type,
booktabs = TRUE,
linesep = "",
caption = "Reproducibility software package version information"
) %>%
Expand Down
Loading