mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add r-lexicon.
* gnu/packages/cran.scm (r-lexicon): New variable.
This commit is contained in:
parent
bc82567b0b
commit
c3a1373c15
1 changed files with 23 additions and 0 deletions
|
@ -27464,3 +27464,26 @@ (define-public r-syuzhet
|
||||||
sentiment parser. The package provides several methods for plot arc
|
sentiment parser. The package provides several methods for plot arc
|
||||||
normalization.")
|
normalization.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-lexicon
|
||||||
|
(package
|
||||||
|
(name "r-lexicon")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "lexicon" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
|
||||||
|
(properties `((upstream-name . "lexicon")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-data-table" ,r-data-table)
|
||||||
|
("r-syuzhet" ,r-syuzhet)))
|
||||||
|
(home-page "https://github.com/trinker/lexicon")
|
||||||
|
(synopsis "Lexicons for Text Analysis")
|
||||||
|
(description
|
||||||
|
"This package provides a collection of lexical hash tables, dictionaries,
|
||||||
|
and word lists.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
Loading…
Reference in a new issue