mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add r-infer.
* gnu/packages/cran.scm (r-infer): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
35f033750f
commit
48d40c7717
1 changed files with 30 additions and 0 deletions
|
@ -24089,3 +24089,33 @@ (define-public r-parsnip
|
|||
model without having to remember the different argument names across different
|
||||
functions or computational engines (e.g. R, Spark, Stan, etc).")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-infer
|
||||
(package
|
||||
(name "r-infer")
|
||||
(version "0.5.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "infer" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0m00xhzrvmskwj4jwncakwxhzivn9pyiylq4r8s6ny4yiwqg303m"))))
|
||||
(properties `((upstream-name . "infer")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-dplyr" ,r-dplyr)
|
||||
("r-ggplot2" ,r-ggplot2)
|
||||
("r-glue" ,r-glue)
|
||||
("r-magrittr" ,r-magrittr)
|
||||
("r-purrr" ,r-purrr)
|
||||
("r-rlang" ,r-rlang)
|
||||
("r-tibble" ,r-tibble)))
|
||||
(native-inputs
|
||||
`(("r-knitr" ,r-knitr)))
|
||||
(home-page "https://github.com/tidymodels/infer")
|
||||
(synopsis "Tidy statistical inference")
|
||||
(description
|
||||
"The objective of this package is to perform inference using an
|
||||
expressive statistical grammar that coheres with the Tidy design framework.")
|
||||
(license license:cc0)))
|
||||
|
|
Loading…
Reference in a new issue