mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: Add r-slider.
* gnu/packages/cran.scm (r-slider): New variable.
This commit is contained in:
parent
64d4816881
commit
b0728c4d7e
1 changed files with 28 additions and 0 deletions
|
@ -23800,6 +23800,34 @@ (define-public r-warp
|
|||
observations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-slider
|
||||
(package
|
||||
(name "r-slider")
|
||||
(version "0.1.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "slider" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1x4jwfxam4czfkb1s5qds5krfw1h2p5a4rh6f5z4yvhsv0d81xck"))))
|
||||
(properties `((upstream-name . "slider")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-glue" ,r-glue)
|
||||
("r-rlang" ,r-rlang)
|
||||
("r-vctrs" ,r-vctrs)
|
||||
("r-warp" ,r-warp)))
|
||||
(native-inputs `(("r-knitr" ,r-knitr)))
|
||||
(home-page "https://github.com/DavisVaughan/slider")
|
||||
(synopsis "Sliding window functions")
|
||||
(description
|
||||
"This package provides type-stable rolling window functions over any R
|
||||
data type. Cumulative and expanding windows are also supported. For more
|
||||
advanced usage, an index can be used as a secondary vector that defines how
|
||||
sliding windows are to be created.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-rsample
|
||||
(package
|
||||
(name "r-rsample")
|
||||
|
|
Loading…
Reference in a new issue