me
/
guix
Archived
1
0
Fork 0

gnu: Add r-tidypredict.

* gnu/packages/cran.scm (r-tidypredict): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
master
Peter Lo 2020-06-29 13:50:35 +08:00 committed by Ricardo Wurmus
parent 3dbe8a57ec
commit 156c558866
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 33 additions and 0 deletions

View File

@ -23899,3 +23899,36 @@ the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
are 10 paired statistics. These can be used to make comparisons between
models without involving a test set.")
(license license:gpl2)))
(define-public r-tidypredict
(package
(name "r-tidypredict")
(version "0.4.5")
(source
(origin
(method url-fetch)
(uri (cran-uri "tidypredict" version))
(sha256
(base32
"1i6zl6wjz6wbpkmkc9z9ikp8zgck3qh38lar0r6q2jzl8fxpimg4"))))
(properties `((upstream-name . "tidypredict")))
(build-system r-build-system)
(propagated-inputs
`(("r-dplyr" ,r-dplyr)
("r-generics" ,r-generics)
("r-knitr" ,r-knitr)
("r-purrr" ,r-purrr)
("r-rlang" ,r-rlang)
("r-tibble" ,r-tibble)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://tidypredict.tidymodels.org")
(synopsis "Run predictions inside the database")
(description
"This package parses a fitted R model object, and returns a formula in
Tidy Eval code that calculates the predictions. It works with several
database backends because it leverages @code{dplyr} and @code{dbplyr} for the
final SQL translation of the algorithm. It currently supports @code{lm()},
@code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
@code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
(license license:gpl3)))