Skip to content

Commit

Permalink
version 0.1-4
Browse files Browse the repository at this point in the history
  • Loading branch information
wrathematics authored and cran-robot committed Mar 5, 2022
1 parent f7d1863 commit 517e66d
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 27 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Release 0.1-4:
* Minor documentation fix for CRAN.

Release 0.1-3:
* Fixed build for clang 13.

Expand Down
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: meanr
Type: Package
Title: Sentiment Analysis Scorer
Version: 0.1-3
Version: 0.1-4
Description: Sentiment analysis is a popular technique in text mining that
attempts to determine the emotional state of some text. We provide a new
implementation of a common method for computing sentiment, whereby words are
Expand All @@ -20,8 +20,8 @@ Authors@R: c(person("Drew", "Schmidt", role=c("aut", "cre"),
Maintainer: Drew Schmidt <wrathematics@gmail.com>
URL: https://github.com/wrathematics/meanr
BugReports: https://github.com/wrathematics/meanr/issues
RoxygenNote: 6.1.1
Packaged: 2021-09-15 10:47:58 UTC; mschmid3
RoxygenNote: 7.1.2
Packaged: 2022-03-05 23:16:33 UTC; mschmid3
Author: Drew Schmidt [aut, cre]
Repository: CRAN
Date/Publication: 2021-09-16 13:30:02 UTC
Date/Publication: 2022-03-05 23:30:02 UTC
10 changes: 5 additions & 5 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
6a2b5487f6a6e91225404a17bdb36862 *ChangeLog
97bc87f5719de6cd385df13db56b30bb *DESCRIPTION
8390f514e699b9ec7f9e0f4432ce6ca1 *ChangeLog
b40c9dd91956138ecddaf99eb057fec6 *DESCRIPTION
3bb36bae4f20d6d901563bb436fdca76 *LICENSE
71a59864821bfe266acacf836a65ff17 *NAMESPACE
1e68875d24679b72224292e7e6ad2aaf *R/meanr-package.r
7bc09f90774b095c79cc8c2d08b2df82 *R/meanr-package.r
2d85a96c77521020ae322e8bfccf34f4 *R/meanr.nthreads.r
7461fcea0078384cf7a8bb0563486c1c *R/score.r
ff3cbe68cf508ec39a2ff10e5e29ee8c *README.md
7ccd8be6229194dc8cbc2e71a399fe65 *README.md
568cc65f24ab8abe07975404b3ce9db5 *cleanup
b4c71e2ab491a98c8caa51eaf4d80dd7 *configure
43cfd32acffd207160d9e5f8b85c8590 *configure.ac
Expand All @@ -14,7 +14,7 @@ d42b1cf816faa7331fa7dbcbe1226d61 *inst/CITATION
868c2acd29d90cab7b660bbb962b999e *inst/sexputils/RNACI.h
531e126d0a1fde18833a3edb18827b67 *inst/sexputils/reactor.h
714124ba3a51388f100a65c8ed9c4026 *inst/sexputils/safeomp.h
d38aa8dc386be73bb37dc4f15103c836 *man/meanr-package.Rd
da1f5da00e3510a964e01e03b94e7cdd *man/meanr-package.Rd
19445ee5ae3b75e6a5b1ce70f4dc906c *man/meanr.nthreads.Rd
fc679ec321dffd71ab40d7a4b4c5c646 *man/score.Rd
8287ca72695a213913079b52402b11ef *src/Makevars.in
Expand Down
17 changes: 9 additions & 8 deletions R/meanr-package.r
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
#' meanr: Sentiment Analysis Scorer
#'
#' Sentiment analysis is a popular technique in text mining that
#' attempts to determine the emotional state of some text. We provide a new
#' Sentiment analysis is a popular technique in text mining. Roughly
#' speaking, the technique is an attempt to determine the overall emotional
#' attitude of a piece of text (i.e., positive or negative). We provide a new
#' implementation of a common method for computing sentiment, whereby words are
#' scored as positive or negative according to a dictionary lookup. Then the
#' sum of those scores is returned for the document. We use the Hu and Liu
#' sentiment dictionary (Hu and Liu, 2004) <doi:10.1145/1014052.1014073>
#' for determining sentiment. The scoring function is vectorized by document,
#' and scores for multiple documents are computed in parallel via OpenMP.
#' scored as positive or negative according to a "dictionary", and then an
#' sum of those scores for the document is produced. We use the 'Hu' and 'Liu'
#' sentiment dictionary for determining sentiment. The scoring function is
#' 'vectorized' by document, and scores for multiple documents are computed in
#' parallel via 'OpenMP'.
#'
#' @name meanr-package
#' @docType package
#' @author Drew Schmidt \email{wrathematics AT gmail.com}
#' @author Drew Schmidt
#' @keywords Package
NULL
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# meanr

* **Version:** 0.1-3
* **Version:** 0.1-4
* **URL**: https://github.com/wrathematics/meanr
* **Status:** [![Build Status](https://travis-ci.org/wrathematics/meanr.png)](https://travis-ci.org/wrathematics/meanr)
* **License:** [BSD 2-Clause](https://opensource.org/licenses/BSD-2-Clause)
* **Author:** Drew Schmidt

Expand Down
17 changes: 9 additions & 8 deletions man/meanr-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 517e66d

Please sign in to comment.