gnu: Add r-lsei.
* gnu/packages/cran.scm (r-lsei): New variable.
This commit is contained in:
parent
74cc74e434
commit
7c7ee6cf4c
|
@ -6990,3 +6990,26 @@ tables available in a variety of formats (plain ASCII, Markdown and HTML). A
|
||||||
good point-of-entry for exploring data, both for experienced and new R
|
good point-of-entry for exploring data, both for experienced and new R
|
||||||
users.")
|
users.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-lsei
|
||||||
|
(package
|
||||||
|
(name "r-lsei")
|
||||||
|
(version "1.2-0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "lsei" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("gfortran" ,gfortran)))
|
||||||
|
(home-page "https://www.stat.auckland.ac.nz/~yongwang")
|
||||||
|
(synopsis "Solve regression problems under equality/inequality constraints")
|
||||||
|
(description
|
||||||
|
"It contains functions that solve least squares linear regression
|
||||||
|
problems under linear equality/inequality constraints. Functions for solving
|
||||||
|
quadratic programming problems are also available, which transform such
|
||||||
|
problems into least squares ones first.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in New Issue