diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 18:36:45 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:22 +0100 |
| commit | f82a5e3a0c2ddf3a5dfe5e59ea624cd4a4ec567b (patch) | |
| tree | 581d4c97d5d5b884466a525773839083d5187148 /gnu | |
| parent | 873ab88f39554d392fd43ce3e49830fd6652dc7a (diff) | |
gnu: r-sn: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-sn): Move from here...
* gnu/packages/cran.scm (r-sn): ...to here.
Change-Id: I53e34aa96c69d861ff72fd89fdae52c7053a8a94
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 24 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 25 |
2 files changed, 24 insertions, 25 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d6556735fb6..b350039aaa9 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10432,6 +10432,30 @@ individual SNP score statistics in a SNP set and efficiently compute SNP-set level p-values.") (license license:gpl2+))) +(define-public r-sn + (package + (name "r-sn") + (version "2.1.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "sn" version)) + (sha256 + (base32 + "0riyb3r38cy582c0ppd72s07jlzf375v1b9bqs2dsw6rfhzix01f")))) + (build-system r-build-system) + (propagated-inputs + (list r-mnormt r-numderiv r-quantreg)) + (native-inputs (list r-r-rsp)) + (home-page "http://azzalini.stat.unipd.it/SN") + (synopsis "The skew-normal and skew-t distributions") + (description + "This package provides functionalities to build and manipulate +probability distributions of the skew-normal family and some related ones, +notably the skew-t family, and provides related statistical methods for data +fitting and diagnostics, in the univariate and the multivariate case.") + (license license:gpl2+))) + (define-public r-snowflakeauth (package (name "r-snowflakeauth") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index c680e15f73b..75d19aa17d3 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1962,31 +1962,6 @@ which, one can calculate integrals over truncated regions for multivariate normals.") (license license:gpl2))) -(define-public r-sn - (package - (name "r-sn") - (version "2.1.2") - (source - (origin - (method url-fetch) - (uri (cran-uri "sn" version)) - (sha256 - (base32 - "0riyb3r38cy582c0ppd72s07jlzf375v1b9bqs2dsw6rfhzix01f")))) - (build-system r-build-system) - (propagated-inputs - (list r-mnormt r-numderiv r-quantreg)) - (native-inputs (list r-r-rsp)) - (home-page "http://azzalini.stat.unipd.it/SN") - (synopsis "The skew-normal and skew-t distributions") - (description - "This package provides functionalities to build and manipulate -probability distributions of the skew-normal family and some related -ones, notably the skew-t family, and provides related statistical -methods for data fitting and diagnostics, in the univariate and the -multivariate case.") - (license license:gpl2+))) - (define-public r-tclust (package (name "r-tclust") |
