[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: Add r-paradox.
From: |
guix-commits |
Subject: |
04/05: gnu: Add r-paradox. |
Date: |
Tue, 29 Dec 2020 08:40:27 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit b32b625f0ab44fbd07804359979995cd3647712b
Author: Wiktor Żelazny <wz@freeshell.de>
AuthorDate: Tue Dec 29 13:41:20 2020 +0100
gnu: Add r-paradox.
* gnu/packages/cran.scm (r-paradox): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 527412b..3604ebd 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25460,3 +25460,28 @@ helper functions for functional programming, for
printing, to work with
@code{data.table}, as well as some generally useful @code{R6} classes. This
package also supersedes the package @code{BBmisc}.")
(license license:lgpl3)))
+
+(define-public r-paradox
+ (package
+ (name "r-paradox")
+ (version "0.6.0")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "paradox" version))
+ (sha256
+ (base32
+ "1zv0q411wcwigkf4yggs3w2gz48lvv3jhnrddrv40qih8b70ywi3"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-backports" ,r-backports)
+ ("r-checkmate" ,r-checkmate)
+ ("r-data-table" ,r-data-table)
+ ("r-mlr3misc" ,r-mlr3misc)
+ ("r-r6" ,r-r6)))
+ (home-page "https://paradox.mlr-org.com/")
+ (synopsis "Define and work with parameter spaces for complex algorithms")
+ (description "With this package it is possible to define parameter spaces,
+constraints and dependencies for arbitrary algorithms, and to program on such
+spaces. It also includes statistical designs and random samplers. Objects are
+implemented as @code{R6} classes.")
+ (license license:lgpl3)))