diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-02-18 20:32:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-02-18 21:11:56 +0100 |
commit | 411f3f1ffe8ec17bd7fea624ff2284786de36c14 (patch) | |
tree | 3207be809db1f89f2cdf928d04c1a92ab8da3c7b | |
parent | 7ec692587a20a248e6b94fffc214ab152e7907d3 (diff) |
gnu: Add r-butcher.
* gnu/packages/cran.scm (r-butcher): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1f4f55f038..81b01d4ad1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28071,6 +28071,32 @@ on a continuous-time birth-death process.") league, the Bundesliga. It contains data from 1964 to 2016.") (license license:gpl3))) +(define-public r-butcher + (package + (name "r-butcher") + (version "0.3.1") + (source (origin + (method url-fetch) + (uri (cran-uri "butcher" version)) + (sha256 + (base32 + "1ymz4p887f8z54bxwih0zycbs2wmy5rlmw9z0gl0y89q4l8vyygw")))) + (properties `((upstream-name . "butcher"))) + (build-system r-build-system) + (propagated-inputs (list r-cli + r-lobstr + r-purrr + r-rlang + r-tibble + r-vctrs)) + (native-inputs (list r-knitr)) + (home-page "https://butcher.tidymodels.org/") + (synopsis "Model butcher") + (description + "This package provides a set of S3 generics to axe components of fitted +model objects and help reduce the size of model objects saved to disk.") + (license license:expat))) + (define-public r-d3network (package (name "r-d3network") |