Skip to content

Releases: certara/tidyvpc

v1.5.2

26 Nov 14:54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5.1...v1.5.2

v1.5.1

22 Jan 18:46
7d0a3b0
Compare
Choose a tag to compare

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

30 Oct 21:08
4644e28
Compare
Choose a tag to compare

tidyvpc 1.5.0

  • Support for generating percentage blq/alq plots using plot.tidyvpcobj. For VPC with censoring(), users can supply arguments censoring.type (options are 'none', 'blq', 'alq', or 'both', defaults to 'none') and censoring.output (options are 'grid' or 'list', defaults to 'grid').#21
  • Plotting updates were made for ggplot2 version 3.4.0 to use linewidth instead of size 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 new xsim 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 of predcorrect.tidyvpcobj(), and automatically performing LOESS pcVPC when binless.tidyvpcobj() is used. As a result, the loess.ypc argument is no longer required#43.
  • The binless.tidyvpcobj function is now compatible with usage of censoring.tidyvpcobj with ALQ data, in addition to BLQ data.#49
  • VPC can work with a single value in a group #51

v1.4.0

27 Oct 21:16
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.4.0

v1.3.0

11 Mar 17:15
Compare
Choose a tag to compare

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