gnu: Add r-mlapi.

* gnu/packages/cran.scm (r-mlapi): New variable.
This commit is contained in:
Ricardo Wurmus 2021-06-29 12:27:35 +02:00
parent 1be97fa9ce
commit ae00ea94aa
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -17810,6 +17810,33 @@ (define-public r-rex
regular expressions from human readable expressions")
(license license:expat)))
(define-public r-mlapi
(package
(name "r-mlapi")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "mlapi" version))
(sha256
(base32
"023vk5bp8cjcq88sapkl87kdxr92bay1dyxl6xirnyj699pyj51k"))))
(properties `((upstream-name . "mlapi")))
(build-system r-build-system)
(propagated-inputs
`(("r-matrix" ,r-matrix)
("r-r6" ,r-r6)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://cran.r-project.org/package=mlapi")
(synopsis "Abstract classes for building scikit-learn like API")
(description
"This package provides R6 abstract classes for building machine learning
models with a scikit-learn like API. Scikit-learn is a popular module for the
Python programming language whose design became a de facto standard in
industry for machine learning tasks.")
(license license:expat)))
(define-public r-xmlparsedata
(package
(name "r-xmlparsedata")