Below is a word cloud of Seth Milchick’s most frequently used words of the past [few] quarter[s] alone. [Lumon] recommended that Mr. Milchick begin simplifying his language so as to achieve clearer comprehension from his subordinates and peers.
Lumon claimed (as detailed above) that Milchick is using too many big words. I don’t see evidence of this!
Here’s the thing, I don’t think there are that many big words! We are of course making some assumptions here (mainly that the words we see in the on screen dialogue are representative of how he speaks off screen), but I think this is reasonable. Ok, maybe the word cloud is not the best way to see this (although we are just doing the same analysis Lumon claims to!), let’s instead compare the percentage of multisyllabic words Milchick uses compared to the rest of the characters.
Syllable count
Let’s see if Milchick is really using more syllables than everyone else.
Looking at the distribution above, it looks like no, in general Milchick is in line with the other speakers. Milchick uses an average of 1.35 (95% CI: 1.33 - 1.37) syllables per word, whereas everyone else is close behind with an average of 1.28 (95% CI: 1.27 - 1.29). While this difference is technically statistically significant, we do not think it is scientifically meaningful.
Common words
Ok, maybe by “big” Lumon meant not that the words were multisyllabic but rather uncommon. We can use Fry’s 1000 word list (Fry (1997)) to help us see if Milchick uses uncommon words more frequently than the other characters. This list claims to contain words that make up 90% of all printed text, let’s see if Milchick is using more uncommon words than his counterparts.
Well look at that, Milchick is in line with the rest of the characters! 71.6% of Milchick’s words are “common” (95% CI: 70.3 - 72.8) compared to 72.8% for everyone else 72.3 - 73.3). Notably, these are both much lower than 90%, as (according to Fry) would be expected in written text, so maybe everyone is using weird vocabulary, but it is not at all unique to Milchick! We will be taking this up with the board.
This analysis was made possible by the mdr R package, which used data originally compiled by the Severance wiki. It uses data through season 2 episode 5.
Addendum
Some folks want to see which words are specific to Milchick – instead of weighting by frequency like in our top word cloud, we could instead weight by the tf-idf (term frequency, inverse document frequency). This basically tells us which words are uniquely used by Milchick. I would argue this is not what Lumon claimed to do as they were trying to say he was using too many big words (which implies frequency), but in any case this is fun!
Code
tf_idf <- words_df |>mutate(word =case_when( word =="innie's"~"innie",.default = word )) |>filter(!str_detect(word, "\\d"), word !="b's") |>anti_join(stop_words, by ="word") |>count(milchick, word, sort =TRUE) |>bind_tf_idf(word, milchick, n) |>filter(milchick) |>mutate(n =round(tf_idf *10000, 1)) |>select(word, n) |>arrange(desc(n)) wordcloud2(tf_idf, backgroundColor ="#030303",fontFamily ="Noto Sans Mono",size =0.2)
Zipf Frequency
Our refiner of the quarter, Leopold, pointed out that we could use the Zipf frequency of the words to get a more granular look at whether Milchick is using common language (compared to our Fry approach which just dichotomized as common/not common). As the title of my main blog, livefreeordichotomize, would suggest, I am ALWAYS here to avoid dichotomizing. The Zipf frequency is the log (base 10) of the number of times a word appears per billion words (i.e., a word with Zipf frequency of 3 appears once per million words). Ok, let’s try that! We’ve calculated this for our main guy, Milchick, along with some other characters to compare him to and plotted the density. The dashed lines represent the medians.
Fascinating, this is a great view of the language! Of the ones we examined, most of our main characters have a median Zipf frequency between 4.7 (Cobel) and 5 (Ms. Huang), with the exception of Milchick (4.6) and Irving (4.6). Now, one angle is that Milchick is using too big of words, but another is that Ms. Huang, his likely accuser, is just using too basic of words compared to the others. Or maybe she is onto something, his Zipf frequency distribution is (statistically) significantly different from everyone else (p = <0.001).