gnu: Add r-tsne.
* gnu/packages/bioinformatics.scm (r-tsne): New variable. Signed-off-by: Ben Woodcroft <donttrustben@gmail.com>
This commit is contained in:
parent
02eec38ee1
commit
a5935d1946
1 changed files with 18 additions and 0 deletions
|
@ -4819,3 +4819,21 @@ (define-public r-ranger
|
||||||
regression, survival and probability prediction trees are supported. Data from
|
regression, survival and probability prediction trees are supported. Data from
|
||||||
genome-wide association studies can be analyzed efficiently.")
|
genome-wide association studies can be analyzed efficiently.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-tsne
|
||||||
|
(package
|
||||||
|
(name "r-tsne")
|
||||||
|
(version "0.1-3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "tsne" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0s8cv2pndkddq62rzlgzgfdjp1vjv5hz5i5957sllnb97vbzbzb6"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://github.com/jdonaldson/rtsne/")
|
||||||
|
(synopsis "t-Distributed Stochastic Neighbor Embedding for R")
|
||||||
|
(description
|
||||||
|
"This package provides a pure R implementation of the t-SNE algorithm.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue