From 4788bd5c29875b6c40d5738749d3319737975c39 Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Wed, 17 Jul 2024 17:18:06 -0500 Subject: [PATCH 1/7] bump version; start on NEWS --- DESCRIPTION | 2 +- NEWS.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 602738b..418d584 100755 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: pmplots Type: Package Title: Plots for Pharmacometrics -Version: 0.4.1.9001 +Version: 0.5.0 Authors@R: c( person("Kyle T", "Baron", "", "kyleb@metrumrg.com", c("aut", "cre")), person("Metrum Research Group", role = c("cph")) diff --git a/NEWS.md b/NEWS.md index 32204b8..991ae02 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,5 @@ -# pmplots (development version) +# pmplots 0.5.0 + # pmplots 0.4.1 From c3f2ad58b3c232ed7ed0b392988430c30ef9cf3f Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Thu, 18 Jul 2024 12:56:01 -0500 Subject: [PATCH 2/7] start on news --- NEWS.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/NEWS.md b/NEWS.md index 991ae02..428bbf5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,26 @@ # pmplots 0.5.0 +- Multiple `x` and `y` can be now be passed as `list` in addition to + character vector (#95). + +- Vectorized plots (returned as a list of plots) are now named according to the + `x` or `y` data column (#96). + +- New function `rot_xy()` allows rotation of x- or y-axis tick labels for `gg` + objects, `patchwork` objects, or lists of `gg` or `patchwork` objects; this + function uses `rot_at()` for processing lists (#96). + +- New function `rot_at()` allows rotation of x- or y-axis tick labels of `gg` + or `patchwork` objects or named lists of these objects; the list method + allows rotation of specific plots in the list by matching the name exactly + or through a regular expression (#96). + +- New function `pm_with()`, allowing arrangement of a named list of plots using + `patchwork` syntax (#96). + +- `rot_y()` has been updated with a vertical argument, similar to `rot_x()` + (#96). + # pmplots 0.4.1 From 41b7367211090c9fc3de6b2d9a533eef69713741 Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Mon, 22 Jul 2024 07:58:27 -0500 Subject: [PATCH 3/7] news --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 428bbf5..a189b8e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # pmplots 0.5.0 -- Multiple `x` and `y` can be now be passed as `list` in addition to +- Multiple `x` and `y` can be now be passed as a `list` in addition to character vector (#95). - Vectorized plots (returned as a list of plots) are now named according to the From 373154816983c3a30d9634480a9f21bc9a05f882 Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Mon, 22 Jul 2024 07:59:21 -0500 Subject: [PATCH 4/7] spelling --- inst/WORDLIST | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inst/WORDLIST b/inst/WORDLIST index f6a3706..d8ef07d 100644 --- a/inst/WORDLIST +++ b/inst/WORDLIST @@ -54,3 +54,7 @@ customizations Metrum yspec README +parens +yaml +unarranged + From 36edf9eea5ffe777ddc84a0c50584db067698d03 Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Mon, 22 Jul 2024 08:39:15 -0500 Subject: [PATCH 5/7] revise news --- NEWS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index a189b8e..1fa5246 100644 --- a/NEWS.md +++ b/NEWS.md @@ -15,11 +15,11 @@ allows rotation of specific plots in the list by matching the name exactly or through a regular expression (#96). -- New function `pm_with()`, allowing arrangement of a named list of plots using +- New function `pm_with()` allows arrangement of a named list of plots using `patchwork` syntax (#96). -- `rot_y()` has been updated with a vertical argument, similar to `rot_x()` - (#96). +- `rot_y()` has been updated with a `vertical` argument, similar to existing + argument in `rot_x()` (#96). # pmplots 0.4.1 From 91c78933e5a216dc62133155cab684ab702e84a3 Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Mon, 22 Jul 2024 08:41:34 -0500 Subject: [PATCH 6/7] add Kyle as contributor --- DESCRIPTION | 1 + 1 file changed, 1 insertion(+) diff --git a/DESCRIPTION b/DESCRIPTION index 418d584..845e6fb 100755 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,6 +4,7 @@ Title: Plots for Pharmacometrics Version: 0.5.0 Authors@R: c( person("Kyle T", "Baron", "", "kyleb@metrumrg.com", c("aut", "cre")), + person(given = "Kyle", family = "Meyer", role = "ctb"), person("Metrum Research Group", role = c("cph")) ) Maintainer: Kyle Baron From d18b177da5c80f23b57896206b28462f8fa491af Mon Sep 17 00:00:00 2001 From: Kyle Baron Date: Mon, 22 Jul 2024 08:42:38 -0500 Subject: [PATCH 7/7] add email --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 845e6fb..7111e0a 100755 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,7 +4,7 @@ Title: Plots for Pharmacometrics Version: 0.5.0 Authors@R: c( person("Kyle T", "Baron", "", "kyleb@metrumrg.com", c("aut", "cre")), - person(given = "Kyle", family = "Meyer", role = "ctb"), + person(given = "Kyle", family = "Meyer", role = "ctb", email = "kylem@metrumrg.com"), person("Metrum Research Group", role = c("cph")) ) Maintainer: Kyle Baron