diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 17:09:09 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:22 +0100 |
| commit | 728222ef7af99fa0718e9fca8d59201884c981ec (patch) | |
| tree | fccfe4c1b139dab2d8bd91d463ba3a0243f671f3 | |
| parent | deee09590e58bcd65e7f9539ece7e8356768e38b (diff) | |
gnu: r-vpc: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-vpc): Move from here...
* gnu/packages/cran.scm (r-vpc): ...to here.
Change-Id: I76ace8ad2afefc20bf3b6aa6ea0d215b69065a3b
| -rw-r--r-- | gnu/packages/cran.scm | 36 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 36 |
2 files changed, 36 insertions, 36 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cf4e11df4f4..f492749f083 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8606,6 +8606,42 @@ display Venn diagrams up to 7 sets, and any Boolean union of set intersections.") (license license:gpl3+))) +(define-public r-vpc + (package + (name "r-vpc") + (version "1.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ronkeizer/vpc") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15gkqmamdph9pjv8rg1n8jr1rzvca66gz5iczzsa9ms75bad2z9m")))) + (properties '((updater-extra-native-inputs . ("r-testthat")))) + (build-system r-build-system) + (native-inputs + (list r-testit r-testthat)) + (propagated-inputs + (list r-classint + r-dplyr + r-ggplot2 + r-mass + r-readr + r-stringr + r-survival + r-tidyr)) + (home-page "https://vpc.ronkeizer.com/") + (synopsis "Create visual predictive checks") + (description + "Visual predictive checks are a commonly used diagnostic plot in +pharmacometrics, showing how certain statistics (percentiles) for observed +data compare to those same statistics for data simulated from a model. The +package can generate VPCs for continuous, categorical, censored, and +(repeated) time-to-event data.") + (license license:expat))) + (define-public r-rvenn (package (name "r-rvenn") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 65b746f275b..c9f69cf7f46 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2728,42 +2728,6 @@ are available as well as methods for plotting the results.") generating and manipulating colors in R.") (license license:gpl3)))) -(define-public r-vpc - (package - (name "r-vpc") - (version "1.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ronkeizer/vpc") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15gkqmamdph9pjv8rg1n8jr1rzvca66gz5iczzsa9ms75bad2z9m")))) - (properties '((updater-extra-native-inputs . ("r-testthat")))) - (build-system r-build-system) - (native-inputs - (list r-testit r-testthat)) - (propagated-inputs - (list r-classint - r-dplyr - r-ggplot2 - r-mass - r-readr - r-stringr - r-survival - r-tidyr)) - (home-page "https://vpc.ronkeizer.com/") - (synopsis "Create visual predictive checks") - (description - "Visual predictive checks are a commonly used diagnostic plot in -pharmacometrics, showing how certain statistics (percentiles) for observed -data compare to those same statistics for data simulated from a model. The -package can generate VPCs for continuous, categorical, censored, and -(repeated) time-to-event data.") - (license license:expat))) - (define-public readstat (let ((commit "718d49155e327471ed9bf4a8c157f849f285b46c") (revision "0")) |
