Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b607281
:memo: Initialise "Getting Started" vignette
francisbarton Jun 15, 2026
f38a7fd
:sweden: Add vignette furniture
francisbarton Jun 15, 2026
1544a7a
throwaway commit
francisbarton Jun 15, 2026
fb4ff29
:cook: Bump azkit dependency
francisbarton Jun 15, 2026
e05afbb
:face_with_head_bandage: Bump version
francisbarton Jun 16, 2026
78f01dd
latest work
francisbarton Jun 16, 2026
4cab769
:trumpet: Work on demo vignette
francisbarton Jul 16, 2026
7b5f369
Merge branch 'fb/issue76' into issue76-vignette
francisbarton Jul 16, 2026
c61d7ce
:whale: Add demo data table creation functions
francisbarton Jul 14, 2026
2bc3274
:pencil: Add function documentation
francisbarton Jul 14, 2026
14096d0
Fix segment colours on ecdf plot
francisbarton Jul 14, 2026
09b8652
:otter: Refactor functions that pull lookup files from GitHub
francisbarton Jul 16, 2026
f08a64f
:fire: Remove local copies of lookup for pods and tpmas
francisbarton Jul 16, 2026
3759c95
:label: Fix name of function
francisbarton Jul 16, 2026
a5a40a1
:broom: Fix referencing in function documentation
francisbarton Jul 16, 2026
cdb78ff
:basket: Add further table function (sex+tretspef_grouped)
francisbarton Jul 16, 2026
f212511
:yo_yo: Fix expand step in functions
francisbarton Jul 16, 2026
e59a097
:trumpet: Work on demo vignette
francisbarton Jul 16, 2026
76699d7
:whale: Add demo data table creation functions
francisbarton Jul 16, 2026
cf3e582
:pencil: Add function documentation
francisbarton Jul 16, 2026
b72f34a
:bar_chart: Add more chart examples to qmd
francisbarton Jul 17, 2026
7d03a9b
:cactus: Add GitHub API route to get application access token
francisbarton Jul 17, 2026
479d47e
latest work
francisbarton Jul 17, 2026
62612d4
fixup
francisbarton Jul 17, 2026
a280c50
:jigsaw: bit more work on qmd
francisbarton Jul 17, 2026
df2bf0f
:yo_yo: Handle lookups from GitHub via direct URLs
francisbarton Jul 17, 2026
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$
4 changes: 4 additions & 0 deletions .Renviron.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@
# might be more appropriately kept as project-specific values.)
# Contact a member of SU Data Science to get the required values for these.
AZ_STORAGE_EP =
AZ_TABLE_EP =
RESKIT_GITHUB_APP_PAT=
RESKIT_GITHUB_APP_PRIVATE_KEY=
RESKIT_GITHUB_APP_ID=
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.2
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.2),
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
Loading