gnu: Add r-dixontest.

* gnu/packages/cran.scm (r-dixontest): New variable.
This commit is contained in:
Ricardo Wurmus 2022-05-28 12:07:12 +02:00
parent d723619fc3
commit 39dab63790
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -347,6 +347,29 @@ (define-public r-dirichletreg
(description "This package implements Dirichlet regression models.")
(license license:gpl2+)))
(define-public r-dixontest
(package
(name "r-dixontest")
(version "1.0.3")
(source
(origin
(method url-fetch)
(uri (cran-uri "dixonTest" version))
(sha256
(base32 "1a3yc30g5rbb0jhm2b0iir5i1dy4jyl67spkhx4yysg4snz131wv"))))
(properties `((upstream-name . "dixonTest")))
(build-system r-build-system)
(native-inputs (list gfortran))
(home-page "https://cran.r-project.org/package=dixonTest")
(synopsis "Dixon's ratio test for outlier detection")
(description
"For outlier detection in small and normally distributed samples the ratio
test of Dixon (Q-test) can be used. Density, distribution function, quantile
function and random generation for Dixon's ratio statistics are provided as
wrapper functions. The core applies McBane's Fortran functions that use
Gaussian quadrature for a numerical solution.")
(license license:gpl3)))
(define-public r-emdist
(package
(name "r-emdist")