Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
30 changes: 16 additions & 14 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
^nhp_reskit[.]Rproj$
^[.]Rproj[.]user$
^LICENSE[.]md$
^CODEOWNERS$
^[.]github$
^nhp_reskit[.]code-workspace$
^CODEOWNERS$
^[.]vscode$
^air[.]toml$
^[.]Renviron[.]example$
^inst/a_.*$
^test_results[.]rds$
^[.]lintr$
^jarl[.]toml$
^nhp_reskit[.]Rproj$
^[.]Rproj[.]user$
^LICENSE[.]md$
^CODEOWNERS$
^[.]github$
^nhp_reskit[.]code-workspace$
^CODEOWNERS$
^[.]vscode$
^air[.]toml$
^[.]Renviron[.]example$
^inst/a_.*$
^test_results[.]rds$
^[.]lintr$
^jarl[.]toml$
^vignettes/\.quarto$
^vignettes/*_files$
196 changes: 99 additions & 97 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,97 +1,99 @@
# History files
.Rhistory
.Rapp.history

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# Quarto rendered files and artefacts
*.files/

# R Environment Variables
.Renviron

# pkgdown site
docs/

# translation temp files
po/*~

# RStudio Connect folder
rsconnect/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
/.quarto/

# VSCode extensions/settings
/.vscode/

inst/a_sort*
!inst/a_sort*.qmd

*.rds
# History files
.Rhistory
.Rapp.history

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# Quarto rendered files and artefacts
*.files/

# R Environment Variables
.Renviron

# pkgdown site
docs/

# translation temp files
po/*~

# RStudio Connect folder
rsconnect/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
/.quarto/

# VSCode extensions/settings
/.vscode/

inst/a_sort*
!inst/a_sort*.qmd

*.rds
inst/doc
**/.quarto/
7 changes: 5 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: reskit
Title: Nice selection box of goodies for hobnobbing with NHP model results
Version: 1.0.1
Version: 1.1.0
Authors@R:
c(person(
"Fran", "Barton",
Expand All @@ -27,7 +27,7 @@ Roxygen: list(markdown = TRUE)
Config/testthat/edition: 3
Depends: R (>= 4.5.0)
Imports:
azkit (>= 0.3.0),
azkit (>= 0.3.1),
base64enc,
dplyr,
forcats,
Expand All @@ -48,8 +48,11 @@ Remotes:
The-Strategy-Unit/azkit
Suggests:
here,
knitr,
quarto,
readr,
testthat (>= 3.0.0),
tibble,
withr
Config/roxygen2/version: 8.0.0
VignetteBuilder: quarto
6 changes: 6 additions & 0 deletions vignettes/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.html
*.R
*_files

/.quarto/
**/*.quarto_ipynb
16 changes: 16 additions & 0 deletions vignettes/nhp_reskit.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: "nhp_reskit"
vignette: >
%\VignetteIndexEntry{nhp_reskit}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8}
knitr:
opts_chunk:
collapse: true
comment: '#>'
---

```{r}
#| label: setup
library(reskit)
```
Loading