diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 18:49:28 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:23 +0100 |
| commit | 8662f4fbca1f082e1250ac3b8bb1bc7259ebcc67 (patch) | |
| tree | 483bb26c898ee8a7f39146bab5a0af0a9b4dba41 | |
| parent | b0ff234c69d5eca27d314207f63fd960115b78a1 (diff) | |
gnu: r-tidyr: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-tidyr): Move from here...
* gnu/packages/cran.scm (r-tidyr): ...to here.
Change-Id: Ief68dbda79958e88c9d25a6c2fe79b5d0094eb94
| -rw-r--r-- | gnu/packages/cran.scm | 38 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 38 |
2 files changed, 38 insertions, 38 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 855093e8527..53ec8682726 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12996,6 +12996,44 @@ big data analysis in high-performance desktop or laptop computers. The syntax of the package is similar or identical to tidyverse.") (license license:expat))) +(define-public r-tidyr + (package + (name "r-tidyr") + (version "1.3.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "tidyr" version)) + (sha256 + (base32 + "0nk67ls23r50fxxgzyfvvcf7cwbigl12r9336zvjls5gy3dfdh04")))) + (build-system r-build-system) + (propagated-inputs + (list r-cli + r-cpp11 + r-dplyr + r-glue + r-lifecycle + r-magrittr + r-purrr + r-rlang + r-stringr + r-tibble + r-tidyselect + r-vctrs)) + (native-inputs + (list r-data-table r-knitr r-testthat)) + (home-page "https://github.com/hadley/tidyr") + (synopsis "Tidy data with `spread()` and `gather()` functions") + (description + "tidyr is a reframing of the reshape2 package designed to accompany the +tidy data framework, and to work hand-in-hand with magrittr and dplyr to build +a solid pipeline for data analysis. It is designed specifically for tidying +data, not the general reshaping that reshape2 does, or the general aggregation +that reshape did. In particular, built-in methods only work for data frames, +and tidyr provides no margins or aggregation.") + (license license:expat))) + (define-public r-tidyverse (package (name "r-tidyverse") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index f7577436c01..ce83de80b2c 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1613,44 +1613,6 @@ packages in a way that is consistent with other tidyverse interfaces for selection.") (license license:gpl3))) -(define-public r-tidyr - (package - (name "r-tidyr") - (version "1.3.2") - (source - (origin - (method url-fetch) - (uri (cran-uri "tidyr" version)) - (sha256 - (base32 - "0nk67ls23r50fxxgzyfvvcf7cwbigl12r9336zvjls5gy3dfdh04")))) - (build-system r-build-system) - (propagated-inputs - (list r-cli - r-cpp11 - r-dplyr - r-glue - r-lifecycle - r-magrittr - r-purrr - r-rlang - r-stringr - r-tibble - r-tidyselect - r-vctrs)) - (native-inputs - (list r-data-table r-knitr r-testthat)) - (home-page "https://github.com/hadley/tidyr") - (synopsis "Tidy data with `spread()` and `gather()` functions") - (description - "tidyr is a reframing of the reshape2 package designed to accompany the -tidy data framework, and to work hand-in-hand with magrittr and dplyr to build -a solid pipeline for data analysis. It is designed specifically for tidying -data, not the general reshaping that reshape2 does, or the general aggregation -that reshape did. In particular, built-in methods only work for data frames, -and tidyr provides no margins or aggregation.") - (license license:expat))) - (define-public r-spams (package (name "r-spams") |
