me
/
guix
Archived
1
0
Fork 0

gnu: Add r-broom-helpers.

* gnu/packages/cran.scm (r-broom-helpers): New variable.

Change-Id: I01e43ef17159ba8802983b37e522c03d1a17ae10
Ricardo Wurmus 2023-12-15 12:26:13 +01:00
parent 780c8c9349
commit 7714e8fd32
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 32 additions and 0 deletions

View File

@ -212,6 +212,38 @@ functions always read and write UTF-8 (8-bit Unicode Transformation Format)
files and provide more explicit control over line endings.")
(license license:expat)))
(define-public r-broom-helpers
(package
(name "r-broom-helpers")
(version "1.14.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "broom.helpers" version))
(sha256
(base32 "14vaqxv12yrvqllp8552nx68wk2qfjcy1iy7bajkspgdpwsjzhfd"))))
(properties `((upstream-name . "broom.helpers")))
(build-system r-build-system)
(propagated-inputs (list r-broom
r-cli
r-dplyr
r-labelled
r-lifecycle
r-purrr
r-rlang
r-stringr
r-tibble
r-tidyr))
(native-inputs (list r-knitr))
(home-page "https://larmarange.github.io/broom.helpers/")
(synopsis "Helpers for Model Coefficients Tibbles")
(description
"This package provides suite of functions to work with regression model
@code{broom::tidy()} tibbles. The suite includes functions to group
regression model terms by variable, insert reference and header rows for
categorical variables, add variable labels, and more.")
(license license:gpl3+)))
(define-public r-ca
(package
(name "r-ca")