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...]

Plotting Distributions in R

September 29, 2025 | Jason Bryer

When working with distributions in R, each distribution has four functions, namely: dXXX - density function. rXXX - generate random number from this distribution. pXXX - returns the area to the left of the given value. qXXX - returns the quantil...
[Read more...]
1 3 4 5 6 7 2,203