summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 18:49:28 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:23 +0100
commit8662f4fbca1f082e1250ac3b8bb1bc7259ebcc67 (patch)
tree483bb26c898ee8a7f39146bab5a0af0a9b4dba41 /gnu/packages
parentb0ff234c69d5eca27d314207f63fd960115b78a1 (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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/cran.scm38
-rw-r--r--gnu/packages/statistics.scm38
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
12996of the package is similar or identical to tidyverse.") 12996of the package is similar or identical to tidyverse.")
12997 (license license:expat))) 12997 (license license:expat)))
12998 12998
12999(define-public r-tidyr
13000 (package
13001 (name "r-tidyr")
13002 (version "1.3.2")
13003 (source
13004 (origin
13005 (method url-fetch)
13006 (uri (cran-uri "tidyr" version))
13007 (sha256
13008 (base32
13009 "0nk67ls23r50fxxgzyfvvcf7cwbigl12r9336zvjls5gy3dfdh04"))))
13010 (build-system r-build-system)
13011 (propagated-inputs
13012 (list r-cli
13013 r-cpp11
13014 r-dplyr
13015 r-glue
13016 r-lifecycle
13017 r-magrittr
13018 r-purrr
13019 r-rlang
13020 r-stringr
13021 r-tibble
13022 r-tidyselect
13023 r-vctrs))
13024 (native-inputs
13025 (list r-data-table r-knitr r-testthat))
13026 (home-page "https://github.com/hadley/tidyr")
13027 (synopsis "Tidy data with `spread()` and `gather()` functions")
13028 (description
13029 "tidyr is a reframing of the reshape2 package designed to accompany the
13030tidy data framework, and to work hand-in-hand with magrittr and dplyr to build
13031a solid pipeline for data analysis. It is designed specifically for tidying
13032data, not the general reshaping that reshape2 does, or the general aggregation
13033that reshape did. In particular, built-in methods only work for data frames,
13034and tidyr provides no margins or aggregation.")
13035 (license license:expat)))
13036
12999(define-public r-tidyverse 13037(define-public r-tidyverse
13000 (package 13038 (package
13001 (name "r-tidyverse") 13039 (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
1613selection.") 1613selection.")
1614 (license license:gpl3))) 1614 (license license:gpl3)))
1615 1615
1616(define-public r-tidyr
1617 (package
1618 (name "r-tidyr")
1619 (version "1.3.2")
1620 (source
1621 (origin
1622 (method url-fetch)
1623 (uri (cran-uri "tidyr" version))
1624 (sha256
1625 (base32
1626 "0nk67ls23r50fxxgzyfvvcf7cwbigl12r9336zvjls5gy3dfdh04"))))
1627 (build-system r-build-system)
1628 (propagated-inputs
1629 (list r-cli
1630 r-cpp11
1631 r-dplyr
1632 r-glue
1633 r-lifecycle
1634 r-magrittr
1635 r-purrr
1636 r-rlang
1637 r-stringr
1638 r-tibble
1639 r-tidyselect
1640 r-vctrs))
1641 (native-inputs
1642 (list r-data-table r-knitr r-testthat))
1643 (home-page "https://github.com/hadley/tidyr")
1644 (synopsis "Tidy data with `spread()` and `gather()` functions")
1645 (description
1646 "tidyr is a reframing of the reshape2 package designed to accompany the
1647tidy data framework, and to work hand-in-hand with magrittr and dplyr to build
1648a solid pipeline for data analysis. It is designed specifically for tidying
1649data, not the general reshaping that reshape2 does, or the general aggregation
1650that reshape did. In particular, built-in methods only work for data frames,
1651and tidyr provides no margins or aggregation.")
1652 (license license:expat)))
1653
1654(define-public r-spams 1616(define-public r-spams
1655 (package 1617 (package
1656 (name "r-spams") 1618 (name "r-spams")