How do you pronounce that? Twitter Polls, Academic Language, and Data Science

Over the years, I have asked a fair amount of questions on Twitter in the form of polls. Many of these have to do with pronunciation, especially academic or data science pronunciation. Clearly, my interest in linguistics persists long after my career change to something more data sciency.

As a way to curate some of these little gem Twitter polls, I offer screenshots of the polls below, organized into two categories: Academia and Data Science, though the two are not mutually exclusive. At the bottom of this post explains how I used R to find the polls and generate the screenshots.

Topic: Academia

et al.

The PISA Exam

“Carnegie”

“Primer”

Topic: Data Science

The lavaan R package

Code vs Syntax

Admittedly, this one is not about pronunciation

The lmer R function

### SEM (Structural Equation Modeling)

### data vs data

How I did it

I used the rtweet package to access my tweets. Sadly, there is no rtweet field that identifies whether a tweet is a poll, so I searched for tweets with a question mark, excluded retweets or tweets mentioning someone, and then manually browsed the short list (using pull(text)) until I had the row numbers of the tweets I wanted:

library(tidyverse)
library(rtweet)

data <- get_timelines("anthonyteacher", n = 5000)

data %>%
  filter(str_detect(text, "\\?")==T) %>%
  filter(str_detect(text, "\\@")==F) %>%
  filter(is_retweet == "FALSE") %>%
  #pull(text) # display tweets and find row numbers
  slice(1,
        2,
        10,
        16,
        26,
        28,
        51,
        54,
        59,
        66,
        73) %>%
  select(status_id) %>%
  mutate(url = paste0("https://twitter.com/anthonyteacher/status/", status_id)) %>% DT::datatable()

I used datatable to quickly visit each poll to recall the content and organize them into the two categories above.

Inside this post, which begins as an .Rmd document, I used the tweetrmd package to generate automatic screenshots of the tweets, like so:

tweet_screenshot(tweet_url("anthonyteacher", "1162326051474812929"))

Et voilà…this post.

Avatar
Anthony Schmidt
Data Scientist

My research interests include data science and education. I focus on statistics, research methods, data visualization, and machine learning.

comments powered by Disqus