knitr::opts_chunk$set( warning = FALSE, collapse = TRUE, comment = "#>" ) library(htmltools)
br() br() div( class = "row", div( class = "col-md-4", img( src = "logo.png", class = "img-responsive responsive-img" ) ), div( class = "col-md-8", p( "Text Analysis in R with Julia." ), p( tags$a( tags$i(class = "fa fa-rocket"), class = "btn btn-primary", href = "articles/get_started.html", style = "margin-bottom: 5px;", "Get Started" ), tags$a( tags$i(class = "fa fa-github"), class = "btn btn-default", href = "https://github.com/news-r/textanalysis", style = "margin-bottom: 5px;", target = "_blank", "Repository" ) ) ) )
You can install the package with remotes
from Github, see changes.
# install.packages("remotes") remotes::install_github("news-r/textanalysis") # github
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.