gnu: Add r-optimx.

* gnu/packages/cran.scm (r-optimx): New variable.
This commit is contained in:
Ricardo Wurmus 2020-12-09 17:48:04 +01:00
parent 8d15940f3c
commit fab49665bb
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -22861,6 +22861,34 @@ (define-public r-gamm4
estimation.")
(license license:gpl2+)))
(define-public r-optimx
(package
(name "r-optimx")
(version "2020-4.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "optimx" version))
(sha256
(base32
"00bi2sr2hr7x6cfwlsn7hz2r56lcyv9naa8vmfcgr1r269fc50b3"))))
(properties `((upstream-name . "optimx")))
(build-system r-build-system)
(propagated-inputs `(("r-numderiv" ,r-numderiv)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page "https://cran.r-project.org/web/packages/optimx/")
(synopsis "Expanded replacement and extension of the optim function")
(description
"This package provides a replacement and extension of the @code{optim}
function to call to several function minimization codes in R in a single
statement. These methods handle smooth, possibly box constrained functions of
several or many parameters. Note that the function @code{optimr} was prepared
to simplify the incorporation of minimization codes going forward. This
package also implements some utility codes and some extra solvers, including
safeguarded Newton methods. Many methods previously separate are now included
here.")
(license license:gpl2)))
(define-public r-brms
(package
(name "r-brms")