me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-statistics-pca.

* gnu/packages/perl.scm (perl-statistics-pca): New variable.
master
Ricardo Wurmus 2021-02-19 22:37:22 +01:00
parent 1c701708a7
commit 113dabe831
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 27 additions and 0 deletions

View File

@ -70,6 +70,7 @@
#:use-module (gnu packages ncurses)
#:use-module (gnu packages perl-check)
#:use-module (gnu packages perl-compression)
#:use-module (gnu packages perl-maths)
#:use-module (gnu packages perl-web)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages readline)
@ -8955,6 +8956,32 @@ which it is called.")
@code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
(license license:lgpl2.0)))
(define-public perl-statistics-pca
(package
(name "perl-statistics-pca")
(version "0.0.1")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/D/DS/DSTH/Statistics-PCA-"
version ".tar.gz"))
(sha256
(base32
"1i3bskwibp54c9a2wx8gzr3hyds6mmhr3d550g8j6893005v3bgq"))))
(build-system perl-build-system)
(native-inputs
`(("perl-module-build" ,perl-module-build)))
(propagated-inputs
`(("perl-contextual-return" ,perl-contextual-return)
("perl-math-cephes" ,perl-math-cephes)
("perl-math-matrixreal" ,perl-math-matrixreal)
("perl-text-simpletable" ,perl-text-simpletable)))
(home-page "https://metacpan.org/release/Statistics-PCA")
(synopsis "Perl implementation of Principal Component Analysis")
(description "This package provides the Statistics::PCA module, an
implementation of @dfn{Principal Component Analysis} (PCA).")
(license license:perl-license)))
(define-public perl-stream-buffered
(package
(name "perl-stream-buffered")