diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 17:03:28 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:21 +0100 |
| commit | 7202bcddf2a0bffa209fcdd5d3198844690bc354 (patch) | |
| tree | e5ee1ae51ff0969c711fb797edd560f6ee6a11e3 | |
| parent | 0666e8f50590d6c7c344c574041877616f29fd4d (diff) | |
gnu: r-rrcov: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rrcov): Move from here...
* gnu/packages/cran.scm (r-rrcov): ...to here.
Change-Id: I6a6ad60b8b74c66433ef8807c2244d70fceb32ef
| -rw-r--r-- | gnu/packages/cran.scm | 23 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 23 |
2 files changed, 23 insertions, 23 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3261de392ae..521882f049c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7448,6 +7448,29 @@ and efficient notifications (and file transfer) between computers, phones and tablets.") (license license:gpl2+))) +(define-public r-rrcov + (package + (name "r-rrcov") + (version "1.7-7") + (source + (origin + (method url-fetch) + (uri (cran-uri "rrcov" version)) + (sha256 + (base32 + "1xbhrpmb3bn4h83kr214jmhr0rx5mgjrf396iz70mnq3g425lbqb")))) + (build-system r-build-system) + (propagated-inputs + (list r-lattice r-mvtnorm r-pcapp r-robustbase)) + (native-inputs + (list gfortran r-mass)) + (home-page "https://cran.r-project.org/web/packages/rrcov") + (synopsis "Scalable robust estimators with high breakdown point") + (description + "This package provides an implementation of robust location and scatter +estimation and robust multivariate analysis with high breakdown point.") + (license license:gpl2+))) + (define-public r-runner (package (name "r-runner") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 202585e7ee6..0879cb3d2e0 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2098,29 +2098,6 @@ dispersion modeling and Tweedie power-law families.") ;; Statmod is distributed under either license (license (list license:gpl2 license:gpl3)))) -(define-public r-rrcov - (package - (name "r-rrcov") - (version "1.7-7") - (source - (origin - (method url-fetch) - (uri (cran-uri "rrcov" version)) - (sha256 - (base32 - "1xbhrpmb3bn4h83kr214jmhr0rx5mgjrf396iz70mnq3g425lbqb")))) - (build-system r-build-system) - (propagated-inputs - (list r-lattice r-mvtnorm r-pcapp r-robustbase)) - (native-inputs - (list gfortran r-mass)) - (home-page "https://cran.r-project.org/web/packages/rrcov") - (synopsis "Scalable robust estimators with high breakdown Point") - (description - "This package provides an implementation of robust location and scatter -estimation and robust multivariate analysis with high breakdown point.") - (license license:gpl2+))) - (define-public r-trimcluster (package (name "r-trimcluster") |
