diff options
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 10bc6313c5..11bc4aee50 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6206,6 +6206,30 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see performs global optimization by differential evolution.") (license license:gpl2+))) +(define-public r-rcppdist + (package + (name "r-rcppdist") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "RcppDist" version)) + (sha256 + (base32 "02g57xwfipdcljv06krhm02dbqn9kfyj2km6rdg0a7vq9prwdz1x")))) + (properties `((upstream-name . "RcppDist"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp r-rcpparmadillo)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/duckmayr/RcppDist") + (synopsis "Integration of additional probability distributions") + (description + "RcppDist provides a header-only C++ library with functions for +additional statistical distributions that can be called from C++ when writing +code using Rcpp or RcppArmadillo. Functions are available that return a +@code{NumericVector} as well as doubles, and for multivariate or matrix +distributions, Armadillo vectors and matrices.") + (license license:gpl2+))) + (define-public r-rcppml (package (name "r-rcppml") @@ -6316,6 +6340,27 @@ with Rcpp and retrieve an @code{XPtr} that can be passed to other C++ components.") (license license:expat))) +(define-public r-bb + (package + (name "r-bb") + (version "2019.10-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "BB" version)) + (sha256 + (base32 "0kf9sfsm3n036a8a8gjfpc9qdryvadb019kqjh80n1szdv7bdl04")))) + (properties `((upstream-name . "BB"))) + (build-system r-build-system) + (propagated-inputs (list r-quadprog)) + (home-page "https://publichealth.jhu.edu/") + (synopsis "Solving and optimizing large-scale nonlinear systems") + (description + "This package implements Barzilai-Borwein spectral methods for solving +nonlinear system of equations, and for optimizing nonlinear objective +functions subject to simple constraints.") + (license license:gpl3))) + (define-public r-bindr (package (name "r-bindr") |