1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 06:00:36 +02:00

gnu: Add r-interp.

* gnu/packages/cran.scm (r-interp): New variable.
This commit is contained in:
Ricardo Wurmus
2022-08-09 23:33:50 +02:00
parent d9a0ccf13f
commit d49bbd01e1

View File

@@ -10855,6 +10855,29 @@ supported classes are those defined in packages @code{network} and
@code{igraph}.")
(license license:gpl3)))
(define-public r-interp
(package
(name "r-interp")
(version "1.1-3")
(source (origin
(method url-fetch)
(uri (cran-uri "interp" version))
(sha256
(base32
"0gzsnlg8f7knb100n6vv6307c3v2jd8f9qzrq62jkc6g71mn0kmp"))))
(properties `((upstream-name . "interp")))
(build-system r-build-system)
(propagated-inputs (list r-deldir r-rcpp r-rcppeigen))
(native-inputs (list gfortran))
(home-page "https://cran.r-project.org/package=interp")
(synopsis "Interpolation methods")
(description
"Bivariate data interpolation on regular and irregular grids, either
linear or using splines are the main part of this package. It is intended to
provide replacement functions for the ACM licensed @code{akima::interp} and
@code{tripack::tri.mesh} functions.")
(license license:gpl2+)))
(define-public r-abcoptim
(package
(name "r-abcoptim")