diff options
author | Sebastian Gibb <mail@sebastiangibb.de> | 2023-08-31 10:42:15 +0200 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-10-30 11:17:42 +0000 |
commit | 549d7ce3b3ea502e5bc7be6f66f886b6ee81f9e8 (patch) | |
tree | c93b5c25fd868f37fa9b34fc40547e94a182dd0e /gnu/packages/cran.scm | |
parent | 789ef6837f9794c02bc53a854aacfdf04d3384cf (diff) | |
download | guix-549d7ce3b3ea502e5bc7be6f66f886b6ee81f9e8.tar.gz guix-549d7ce3b3ea502e5bc7be6f66f886b6ee81f9e8.zip |
gnu: Add r-consort.
* gnu/packages/consort.scm (r-consort): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Change-Id: I37bae26b3271f2c8e4d73bb72e11bc475168b0f7
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 674b207a97..d6ce33830b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -341,6 +341,29 @@ Shiny applications.") (license (list license:gpl3 license:isc)))) ;for bundled d3js +(define-public r-consort + (package + (name "r-consort") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (cran-uri "consort" version)) + (sha256 + (base32 + "1jshk53121w58i4if593qzxm6lcrrggz8parwhqvv6hnbx51rhck")))) + (properties `((upstream-name . "consort"))) + (build-system r-build-system) + (native-inputs (list r-knitr)) + (home-page "https://github.com/adayim/consort/") + (synopsis "Create Consort Diagrams") + (description + "To make it easy to create CONSORT diagrams for the transparent reporting of +participant allocation in randomized, controlled clinical trials. This is done +by creating a standardized disposition data, and using this data as the source +for the creation a standard CONSORT diagram. Human effort by supplying text +labels on the node can also be achieved.") + (license license:expat))) + (define-public r-collections (package (name "r-collections") |