Releases: certara/tidyvpc
Releases · certara/tidyvpc
v1.5.2
What's Changed
- Fixed the computational workflow for npde by @certara-mtomashevskiy in #59
- Added varcorr argument to predcorrect method by @certara-mtomashevskiy in #60
- CRAN vignette fix by @certara-jcraig in #62
New Contributors
- @certara-mtomashevskiy made their first contribution in #59
Full Changelog: v1.5.1...v1.5.2
v1.5.1
tidyvpc 1.5.1
This is a patch release 1.5.1
that ensures unit tests do not fail when env var _R_CHECK_DEPENDS_ONLY_=true
in R CMD check
. As a result, the cluster
dependency has been moved from Suggests
to Imports
.
v1.5.0
tidyvpc 1.5.0
- Support for generating percentage blq/alq plots using
plot.tidyvpcobj
. For VPC withcensoring()
, users can supply argumentscensoring.type
(options are'none'
,'blq'
,'alq'
, or'both'
, defaults to 'none') andcensoring.output
(options are'grid'
or'list'
, defaults to'grid'
).#21 - Plotting updates were made for ggplot2 version 3.4.0 to use
linewidth
instead ofsize
for lines#39. simulated.tidyvpcobj()
detects if the number of simulated rows is not an integer multiple of the number of observed rows and adds the newxsim
argument to test that x values match between replicated simulations. It will suggest that MDV filtering may not have occurred if either of these fails #35.- Prevent division by zero in
predcorrect()
transformation #31. - Usability enhancements for prediction corrected VPC (pcVPC), which include support for
binning.tidyvpcobj()
either before or after usage ofpredcorrect.tidyvpcobj()
, and automatically performing LOESS pcVPC whenbinless.tidyvpcobj()
is used. As a result, theloess.ypc
argument is no longer required#43. - The
binless.tidyvpcobj
function is now compatible with usage ofcensoring.tidyvpcobj
with ALQ data, in addition to BLQ data.#49 - VPC can work with a single value in a group #51
v1.4.0
What's Changed
- fix npde calc by @certara-jcraig in #16
- add additional unit tests by @certara-jcraig in #17
- add GH workflows by @certara-jcraig in #18
- add additional binning styles by @certara-jcraig in #23
- usability enhancements for binless + predcorrect by @certara-jcraig in #25
Full Changelog: v1.3.0...v1.4.0
v1.3.0
This is a minor release that provides additional arguments to control aesthetics in the plot() function. In addition, an issue has been fixed where VPC's with one-sided stratification formulas once again use facet_wrap()
and two-sided stratification formulas use facet_grid()
.
Additional arguments to the plot()
function include:
point.size
point.stroke
point.shape
point.alpha
ribbon.alpha
What's Changed
- Restore facet_wrap() for one-sided stratification formulas by @certara-jcraig in #12
- add point.size, point.alpha, and ribbon.alpha by @certara-jcraig in #14
- add point.stroke and point.shape by @certara-jcraig in #15