Text Analysis in R with Julia.

Get Started Repository

Installation

You can install the package with remotes from Github, see changes.

# install.packages("remotes")
remotes::install_github("news-r/textanalysis") # github

Setup

The package’s main dependency is TextAnalysis.jl you therefore need a valid Julia installation on your machine.

You need to initialise every session with init_textanalysis, this will load the Julia dependencies and install them if required.

textanalysis::init_textanalysis()

A few functions in the package depend on the latest version of TextAnalysis which you can then isntall with.

textanalysis::install_textanalysis("latest")