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

commit f7a0a8162563305d52c3d05fd6d1713710a28e02
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:01:45 2026 +0100

    gnu: r-rocr: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-rocr): Move from here...
    * gnu/packages/cran.scm (r-rocr): ...to here.
    
    Change-Id: I9daabfe049a5dd6c96d09e1cda32f7036fc8d56a
---
 gnu/packages/cran.scm       | 32 ++++++++++++++++++++++++++++++++
 gnu/packages/statistics.scm | 32 --------------------------------
 2 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 847e59e8c1..b9795f3269 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7156,6 +7156,38 @@ aggregation that is robust to noise and also facilitates 
the calculation of
 significance probabilities for all the elements in the final ranking.")
     (license license:gpl2)))
 
+(define-public r-rocr
+  (package
+    (name "r-rocr")
+    (version "1.0-12")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "ROCR" version))
+       (sha256
+        (base32
+         "1ywmij9pcspjn10j1p6hp42p79xm2hyyzfqny2167kz2fzckp411"))))
+    (properties `((upstream-name . "ROCR")))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-gplots))
+    (native-inputs
+     (list r-knitr r-testthat))
+    (home-page "https://rocr.bioinf.mpi-sb.mpg.de/";)
+    (synopsis "Visualizing the performance of scoring classifiers")
+    (description
+     "ROCR is a flexible tool for creating cutoff-parameterized 2D performance
+curves by freely combining two from over 25 performance measures (new
+performance measures can be added using a standard interface).  Curves from
+different cross-validation or bootstrapping runs can be averaged by different
+methods, and standard deviations, standard errors or box plots can be used to
+visualize the variability across the runs.  The parameterization can be
+visualized by printing cutoff values at the corresponding curve positions, or
+by coloring the curve according to cutoff.  All components of a performance
+plot can be quickly adjusted using a flexible parameter dispatching
+mechanism.")
+    (license license:gpl2+)))
+
 (define-public r-rose
   (package
     (name "r-rose")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 8eafc90ee4..a1afd4cfcc 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2120,38 +2120,6 @@ framework, with additional code inspection and report 
generation tools.")
 Zurich, including many that are related to graphics.")
     (license license:gpl2+)))
 
-(define-public r-rocr
-  (package
-    (name "r-rocr")
-    (version "1.0-12")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "ROCR" version))
-       (sha256
-        (base32
-         "1ywmij9pcspjn10j1p6hp42p79xm2hyyzfqny2167kz2fzckp411"))))
-    (properties `((upstream-name . "ROCR")))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-gplots))
-    (native-inputs
-     (list r-knitr r-testthat))
-    (home-page "https://rocr.bioinf.mpi-sb.mpg.de/";)
-    (synopsis "Visualizing the performance of scoring classifiers")
-    (description
-     "ROCR is a flexible tool for creating cutoff-parameterized 2D performance
-curves by freely combining two from over 25 performance measures (new
-performance measures can be added using a standard interface).  Curves from
-different cross-validation or bootstrapping runs can be averaged by different
-methods, and standard deviations, standard errors or box plots can be used to
-visualize the variability across the runs.  The parameterization can be
-visualized by printing cutoff values at the corresponding curve positions, or
-by coloring the curve according to cutoff.  All components of a performance
-plot can be quickly adjusted using a flexible parameter dispatching
-mechanism.")
-    (license license:gpl2+)))
-
 (define-public r-sourcetools
   (package
     (name "r-sourcetools")

Reply via email to