Text Analytics in R: Using quanteda

October 6, 2025 | R'tichoke

Required Packages library(quanteda) library(quanteda.textstats) library(quanteda.textplots) library(readr) library(dplyr) library(ggplot2) library(stringr) library(DT) library(tidytext) Introduction In this post, we’ll explore how to transfo...
[Read more...]

Text Analytics in R with quanteda (Part 1)

October 6, 2025 | R'tichoke

Required Packages library(quanteda) library(quanteda.textstats) library(quanteda.textplots) library(readr) library(dplyr) library(ggplot2) library(stringr) library(DT) library(tidytext) Understanding Text Analytics Fundamentals Text analytic...
[Read more...]

Iterating some sample data

October 3, 2025 | R on kieranhealy.org

I’m teaching my Modern Plain Text Computing course this semester and so I’m on the lookout for small examples that I can use to show some of the small techniques we regularly use when working with tables of data. One of those is just coming up with some ... [Read more...]

Simulating Monty Hall’s Problem

September 30, 2025 | Jason Bryer

I find that when teaching statistics (and probability) it is often helpful to simulate data first in order to get an understanding of the problem. The Monty Hall problem recently came up in a class so I implemented a function to play the game. Th... [Read more...]
1 32 33 34 35 36 2,238