Skip to content

Commit

Permalink
Update to chartcatalog 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefvanbuuren committed Dec 4, 2024
1 parent afe7b2a commit 0a54aaa
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: chartcatalog
Type: Package
Title: Catalog of JAMES Growth Charts
Version: 1.16.0
Version: 1.17.0
Authors@R: person("Stef", "van Buuren", email = "[email protected]", role = c("aut", "cre"))
Maintainer: Stef van Buuren <[email protected]>
Description: Tools for naming growth charts, and methods for
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# chartcatalog 1.17.0

* Extends to `ynames_lookup` table with inverse transformation for `x` and `y`

# chartcatalog 1.16.0

* Update to roxygen 7.3.2
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ knitr::opts_chunk$set(

The `chartcatalog` package contains tools to

- Lookup available charts in JAMES;
- Lookup available charts in JAMES;
- Create and parse chart codes;
- Find outcomes, chart group and growth reference;
- Obtain viewport number and transformation functions;
Expand Down
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,20 @@ head(ynames_lookup)
#> 4 nl2010 DJAH hgt 1 A clopus::nl2009[["nl2009.mhgtDS"]]
#> 5 nl2010 DJAO hdc 1 A clopus::nl2009[["nl2009.mhdcDS"]]
#> 6 nl2010 DJAW wgt 1 A clopus::nl1980[["nl1980.mwgt"]]
#> tx ty seq refcode
#> 1 function(x) x * 12 function(y) y tr nl_2009_hdc_male_ds
#> 2 function(x) x * 12 function(y) y tr nl_2009_hgt_male_ds
#> 3 function(x) x * 12 function(y) y tr nl_1980_wgt_male_
#> 4 function(x) x * 12 function(y) y tr nl_2009_hgt_male_ds
#> 5 function(x) x * 12 function(y) y tr nl_2009_hdc_male_ds
#> 6 function(x) x * 12 function(y) y tr nl_1980_wgt_male_
#> tx inv_tx ty inv_ty seq
#> 1 function(x) x * 12 function(x) x / 12 function(y) y function(y) y tr
#> 2 function(x) x * 12 function(x) x / 12 function(y) y function(y) y tr
#> 3 function(x) x * 12 function(x) x / 12 function(y) y function(y) y tr
#> 4 function(x) x * 12 function(x) x / 12 function(y) y function(y) y tr
#> 5 function(x) x * 12 function(x) x / 12 function(y) y function(y) y tr
#> 6 function(x) x * 12 function(x) x / 12 function(y) y function(y) y tr
#> refcode
#> 1 nl_2009_hdc_male_ds
#> 2 nl_2009_hgt_male_ds
#> 3 nl_1980_wgt_male_
#> 4 nl_2009_hgt_male_ds
#> 5 nl_2009_hdc_male_ds
#> 6 nl_1980_wgt_male_
length(unique(ynames_lookup$chartcode))
#> [1] 440
```
Expand Down

0 comments on commit 0a54aaa

Please sign in to comment.