mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add r-asd.
* gnu/packages/cran.scm (r-asd): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
a5a2d79b91
commit
600b6d4378
1 changed files with 24 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
|||
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
|
||||
;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
|
||||
;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -21054,3 +21055,26 @@ (define-public r-remoter
|
|||
with R, controlling a remote R session (the server) from a local one (the
|
||||
client).")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public r-asd
|
||||
(package
|
||||
(name "r-asd")
|
||||
(version "2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "asd" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
|
||||
(properties `((upstream-name . "asd")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-mvtnorm" ,r-mvtnorm)))
|
||||
(home-page "https://cran.r-project.org/web/packages/asd")
|
||||
(synopsis "Simulations for Adaptive Seamless Designs")
|
||||
(description
|
||||
"This package provdes means to run simulations for adaptive seamless
|
||||
designs with and without early outcomes for treatment selection and
|
||||
subpopulation type designs.")
|
||||
(license license:gpl3)))
|
||||
|
|
Loading…
Reference in a new issue