guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit 49310ed506dd482324abd384eae4a177b6cbe198
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:09:09 2026 +0100

    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
---
 gnu/packages/cran.scm       | 36 ++++++++++++++++++++++++++++++++++++
 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 733f4ade01..4f3e636be2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -8559,6 +8559,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 23d9fa5600..2c1cb0ac03 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"))

Reply via email to