add version 1.1.2 to r-tidyr (#21113)
This commit is contained in:
parent
b424dbfead
commit
2c3550ae18
1 changed files with 22 additions and 8 deletions
|
@ -7,26 +7,40 @@
|
|||
|
||||
|
||||
class RTidyr(RPackage):
|
||||
"""An evolution of 'reshape2'. It's designed specifically for data tidying
|
||||
(not general reshaping or aggregating) and works well with 'dplyr' data
|
||||
pipelines."""
|
||||
"""Tidy Messy Data
|
||||
|
||||
Tools to help to create tidy data, where each column is a variable, each
|
||||
row is an observation, and each cell contains a single value. 'tidyr'
|
||||
contains tools for changing the shape (pivoting) and hierarchy (nesting and
|
||||
'unnesting') of a dataset, turning deeply nested lists into rectangular
|
||||
data frames ('rectangling'), and extracting values out of string columns.
|
||||
It also includes tools for working with missing values (both implicit and
|
||||
explicit)."""
|
||||
|
||||
homepage = "https://github.com/hadley/tidyr"
|
||||
url = "https://cloud.r-project.org/src/contrib/tidyr_0.7.2.tar.gz"
|
||||
list_url = "https://cloud.r-project.org/src/contrib/Archive/tidyr"
|
||||
|
||||
version('1.1.2', sha256='08fccb67824515b33187886f3ca2cf2fe747a778514892dbbf5e565edf0dfd6c')
|
||||
version('0.8.3', sha256='a18f54ec35124110058ab23f7e0a3c037a8d50f0405520cf5cc5443ec022cc37')
|
||||
version('0.8.2', sha256='99a508d0539390364789c5f4835b36c4a383927f0ec1648e2a4636c1cc6e490f')
|
||||
version('0.7.2', sha256='062cea2e2b57fffd500e4ce31cba6d593e65684fc0897ea49ea38d257c76009c')
|
||||
version('0.5.1', sha256='dbab642ac7231cbfe3e2a0d4553fb4ffb3699c6d6b432be2bb5812dfbbdbdace')
|
||||
|
||||
depends_on('r@3.1:', type=('build', 'run'))
|
||||
depends_on('r-tibble', type=('build', 'run'))
|
||||
depends_on('r-dplyr@0.7.0:', type=('build', 'run'))
|
||||
depends_on('r-stringi', type=('build', 'run'))
|
||||
depends_on('r-magrittr', type=('build', 'run'))
|
||||
depends_on('r-dplyr@0.8.2:', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-ellipsis@0.1.0:', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-glue', type=('build', 'run'))
|
||||
depends_on('r-rcpp', type=('build', 'run'))
|
||||
depends_on('r-magrittr', type=('build', 'run'))
|
||||
depends_on('r-purrr', type=('build', 'run'))
|
||||
depends_on('r-tidyselect@0.2.5:', type=('build', 'run'))
|
||||
depends_on('r-rlang', type=('build', 'run'))
|
||||
depends_on('r-tibble', type=('build', 'run'))
|
||||
depends_on('r-tibble@2.1.1:', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-tidyselect@0.2.5:', type=('build', 'run'))
|
||||
depends_on('r-tidyselect@1.1.0:', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-vctrs@0.3.0:', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-lifecycle', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-cpp11@0.2.1:', when='@1.1.2:', type=('build', 'run'))
|
||||
depends_on('r-stringi', when='@:0.8.3', type=('build', 'run'))
|
||||
depends_on('r-rcpp', when='@:0.8.3', type=('build', 'run'))
|
||||
|
|
Loading…
Reference in a new issue