Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 894 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 894 Bytes

Last Statements

Overview

The finalized report here uses data that is scraped from Texas Department of Criminal Justice to analyze the last statements of death row inmates. In order to reproduce the scraped death_row.csv data, you should, first of all, run the script here.

The report includes the following text analyses techniques:

  • Topic Modeling
  • Predictive Modeling (i.e., predicting an outcome of interest from text features)
  • Sentiment Analyses

Required Packages

You should have following packages installed:

library(tidyverse)
library(tidytext)
library(textrecipes)
library(topicmodels)
library(here)
library(ggwordcloud)
library(textdata)
library(tidymodels)
library(themis)
library(ranger)
library(kableExtra)
library(rvest)
library(glue)