guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14/17: gnu: Add r-tidytext.


From: guix-commits
Subject: 14/17: gnu: Add r-tidytext.
Date: Fri, 11 Sep 2020 12:33:54 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 8e79e3dd3d325586684ec4c79d6d1400fa85966f
Author: Peter Lo <peterloleungyau@gmail.com>
AuthorDate: Mon Jun 29 13:50:39 2020 +0800

    gnu: Add r-tidytext.
    
    * gnu/packages/cran.scm (r-tidytext): New variable.
    
    Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e776115..f47bc63 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24021,3 +24021,36 @@ vignettes in all common formats.")
                    license:lgpl2.1
                    license:mpl1.1
                    license:expat))))
+
+(define-public r-tidytext
+  (package
+    (name "r-tidytext")
+    (version "0.2.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tidytext" version))
+       (sha256
+        (base32
+         "0gck3f039qkpkwn92jlyfan76w0xydg17bh6nsg9qlba7c35kzs6"))))
+    (properties `((upstream-name . "tidytext")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-dplyr" ,r-dplyr)
+       ("r-generics" ,r-generics)
+       ("r-hunspell" ,r-hunspell)
+       ("r-janeaustenr" ,r-janeaustenr)
+       ("r-matrix" ,r-matrix)
+       ("r-purrr" ,r-purrr)
+       ("r-rlang" ,r-rlang)
+       ("r-stopwords" ,r-stopwords)
+       ("r-stringr" ,r-stringr)
+       ("r-tokenizers" ,r-tokenizers)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/juliasilge/tidytext";)
+    (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
+    (description
+     "This is a package for text mining for word processing and sentiment
+analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]