Coder Social home page Coder Social logo

pejorative-compounds's Introduction

Experiment in collecting and analysing data on the frequencies of compound insults - e.g. butthead, dirtwad, weaselboy - in Reddit comments. Written up as a blog post here.

Warning: this repository contains language that some readers may find very offensive, including slurs.

There are three main ingredients in this repo:

  • counts.csv, a dataset mapping ~4,800 compound pejoratives to the number of Reddit comments containing that compound. (wikt.csv has the same format with a column recording whether the term has an entry in Wiktionary)
  • various Python scripts used to generate this dataset. This process is documented in the "Data pipeline" section below, though you probably don't need to run these unless you want to expand the dataset with a different set of affixes or time range.
  • various IPython notebooks exploring and visualizing the dataset (See "Guide to IPython notebooks" section below)

Overview

I manually curated lists of around 70 prefixes and 70 suffixes (with some overlap between them) which could plausibly be used to form a variety of pejorative compounds. These lists can be found in reddit_counts.py.

For each of the ~70x70 possible A+B compounds from the product of these lists, I used the Pushshift API to collect comments containing that compound. I then applied some data cleaning steps and heuristics to estimate the number of comments using that term on Reddit up to the end of 2020.

Affix selection

The process for selecting the set of prefixes and suffixes to combine was pretty unscientific. I mostly drew inspiration from scanning the "English derogatory terms" category on Wiktionary. I aimed to find affixes which were both frequent and productive (i.e. not limited to just a handful of fixed combinations).

As future work, it would be interesting to explore some sort of semi-supervised method of generating affixes. For example, we could start with a small set of "obvious" affixes (e.g. shit-, fuck-, butt-, -face, -head, -wad) and iteratively expand the set by searching for a suffix that best combines with the current set of prefixes (optimizing for, say, sum of log counts) and adding a prefix that best combines with the current set of suffixes.

I was mostly interested in noun-noun compounds, but the suffix list also includes a small number of bound morphemes such as -oid, and -let.

Data cleaning

There are two main categories of spurious usage which I aim to filter out (implemented in compute_counts.py):

  1. "Copypasta". There are some frequently reposted comments consisting of lists of dirty words (example). These have a tendency to hugely inflate the counts for rare terms. We attempt to exclude them by a) Searching for the presence of substrings that distinctly identify some specific copypastas. b) Excluding all comments from the /r/copypasta subreddit.
  2. Occurrences as part of a url or mention of a Reddit username ("/u/gayfart") or subreddit ("/r/titbird"). These are included as part of Pushshift's fuzzy matching algorithm, but I filter them out.

Other false positives

A major confounder not addressed by the cleaning described above is that some of the compounds formed from our affixes are partially or entirely used with a meaning that is literal or non-pejorative. A few examples:

  • spitball
  • shitstain
  • stinkweed (apparently the name for a number of actual plants)
  • Some matches which potentially aren't even the right part of speech (dogpile, buttfuck)

At one point I had the idea of maintaining a blacklist of false positive terms to exclude, but this can't really be done cleanly because there are so many terms that are used with a mix of literal and pejorative meaning (e.g. shitstain).

Dealing with high-frequency terms

Downloading every single comment having a very common compound such as dumbass would take a long time and disk space. For very high frequency terms, we estimate their total frequency by extrapolating from some randomly sampled time intervals spaced out over the years. We only use 30 random 10-second intervals per year, which is probably not a very robust sample size, but we use the same intervals across all terms, so any bias is at least applied consistently to all high-frequency terms.

Data pipeline

1. download comments

Run reddit_counts.py to download comment data for all combinations of prefixes and suffixes specified in the script using the Pushshift API.

Comments will be saved as arrays of json objects in comment_data/, with one file per compound (e.g. comment_data/poophead.json). Comment arrays are sorted by date, ascending.

There is a cap for high-frequency terms (default 40k, configurable via MAX_REQUESTS_PER_TERM). We'll stop downloading comments for a term when we hit that cap (we'll extrapolate a sampled count for them in step 2).

1.5 compute preliminary counts

To get preliminary counts based on the data downloaded in this step, run:

python compute_counts.py --raw > raw_reddit_counts.csv

This will output a csv mapping compounds to raw counts, which are simply the number of comments in the corresponding json file. e.g. poophead,100 means that the array of comments at comment_data/poophead.json has length 100.

2. download sampled comments for high-frequency compounds

Run sampled_counts.py (with the main() subroutine). For each term in raw_reddit_counts.csv (created in step 1.5) which hit the cap on max comments downloaded, it will download a random sample of comments containing that term. Sampling is done by date - we download comments for 30 randomly chosen days out of each year. Downloaded comments are saved in a separate directory from the main comment data, sampled_comment_data.

3. compute final counts, with sampling and filtering

Run

python compute_counts.py > counts.csv

For terms that were sampled (in step 3), the script will calculate an estimated total comment count based on the sampling rate. For other terms, it will do a count over all comment data.

In this step, we also apply filters to exclude "copypasta" comments and occurrences as part of urls or mentioned Reddit users or subreddits.

4. record wiktionary presence

Run wikt.py to generate the file wikt.csv, which will record, for each compound, whether there is a corresponding English dictionary definition at en.wiktionary.org.

This will make one request per row in counts.csv, taking around 20 minutes.

Guide to IPython notebooks

viz_helpers.py is a module of helper functions used across these notebooks. heatmap.py has helpers specific to making heatmap affix-affix heatmap visualizations.

Notebooks:

  • affixes.ipynb: generates the affix 'flexibility' plots using collision probability and Shannon entropy. Also some other by-affix visualizations not used in writeup. NB: some of these take a while to generate because they use adjust_text to jiggle around markers/labels
  • minimaps.ipynb: generates the mini-matrices used in writeup for comparing narrow groups of related affixes (e.g. butt vs ass vs bum)
  • monoword.ipynb: experiments with comments consisting of only a compound pejorative and nothing else
  • subreddits.ipynb: very limited experiments with subreddit dimension
  • viz.ipynb: main heatmap visualization experiments
  • wikt.ipynb: charts/data relating to questions of most popular terms lacking a wikt entry and least popular terms having a wikt entry
  • zipf.ipynb: looking at distribution of counts, Zipf visualization of log-frequency vs. log-rank

pejorative-compounds's People

Contributors

colinmorris avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.