Skip to content

Commit

Permalink
CRAN version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexChristensen committed Oct 28, 2019
1 parent d8bed7c commit a36874c
Show file tree
Hide file tree
Showing 10 changed files with 7,692 additions and 10 deletions.
4 changes: 3 additions & 1 deletion DESCRIPTION
@@ -1,7 +1,7 @@
Package: SemNetCleaner
Title: An Automated Cleaning Tool for Semantic and Linguistic Data
Version: 1.1.2
Date: 2019-10-10
Date: 2019-10-28
Authors@R: c(person("Alexander P.", "Christensen", email = "alexpaulchristensen@gmail.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-9798-7037")))
Maintainer: Alexander P. Christensen <alexpaulchristensen@gmail.com>
Description: Implements several functions that automates the cleaning and spell-checking of text data. Also converges, finalizes, removes plurals and continuous strings, and puts text data in binary format for semantic network analysis. Uses the 'SemNetDictionaries' package to make the cleaning process more accurate, efficient, and reproducible.
Expand All @@ -13,4 +13,6 @@ NeedsCompilation: no
Encoding: UTF-8
LazyData: true
Imports: hunspell, searcher, stringdist, tcltk, foreign, readxl, R.matlab
Suggests: knitr, rmarkdown, htmlTable
VignetteBuilder: knitr
RoxygenNote: 6.1.1
4 changes: 4 additions & 0 deletions NEWS
Expand Up @@ -6,6 +6,10 @@ o fixed obnoxious message bug in `textcleaner` function

o changed progress bar in `spell.check.dictionary` to display words done out of words in total (rather than percentage)

o updated citation (PsyArXiv)

o added vignettes for preprocessing and estimating semantic networks


Changes in version 1.1.1

Expand Down
9 changes: 9 additions & 0 deletions R/zzz.R
@@ -0,0 +1,9 @@
.onload <- function(libname, pkgname)
{library.dynam("SemNetCleaner",package=pkgname,lib.loc=libname)}

.onAttach <- function(libname, pkgname)
{
msg <- paste('For help getting started, type `browseVignettes("SemNetCleaner")` \n')
msg <- paste(msg,"For bugs and errors, submit an issue to <https://github.com/AlexChristensen/SemNetCleaner/issues>")
packageStartupMessage(msg)
}
20 changes: 11 additions & 9 deletions inst/CITATION
@@ -1,15 +1,17 @@
citHeader("To cite SemNetCleaner in publications use:")

citEntry(entry = "manual",
title = "{SemNetCleaner}: An automated cleaning tool for semantic and linguistic data",
author = "Alexander P Christensen",
bibentry(
bibtype = "article",
key = "christensen2019semna",
title = "Semantic network analysis {(SemNA)}: A tutorial on preprocessing, estimating, and analyzing semantic networks",
author = c(person("Christensen,", "P", "Alexander"),
person("Kenett,", "N", "Yoed")),
journal = "PsyArXiv",
year = "2019",
note = "R package version 1.1.1",
url = "https://cran.r-project.org/package=SemNetCleaner",
doi = "10.31234/osf.io/eht87",

textVersion =
paste("Christensen, A. P. (2019).",
"SemNetCleaner: An automated cleaning tool for semantic and linguistic data.",
"R package version 1.1.1.",
"Retrieved from https://cran.r-project.org/package=SemNetCleaner")
paste0("Christensen, A. P., & Kenett, Y. N. (2019). ",
"Semantic network analysis (SemNA): A tutorial on preprocessing, estimating, and analyzing semantic networks. ",
"PsyArXiv. https//doi.org/10.31234/osf.io/eht87")
)

0 comments on commit a36874c

Please sign in to comment.