Hello! I'm Charlie Lassiter. You may remember me from such blog posts as "The Job Market: We're All Doomed!" and "What Does Brian Leiter Blog About?" I'm here today to help answer the question, "what are newspapers saying about philosophy?" This was inspired by my colleague Mark Alfino, who keeps tabs on trends in higher ed. I says to myself I says, "I wonder how academic philosophy is talked about in newspapers?" I'm typically worried by articles like this one from Axios. And while I plan to get to online sources soon, newspaper turned out to be the easiest to tackle first. I used LexisNexis to get all American newspaper articles from the last 10 years mentioning "philosophy." To make sure I was getting returns on academic philosophy instead of the makeup brand or things like "her investment philosophy is...", I first filtered by "liberal arts" and then by "philosophy." Also, I limited the search to national and local newspapers. This means leaving out Chronicle of Higher Ed as well as some other higher-ed-specific sources. This gave me a batch of 686 articles. After that, I filtered out obituaries; they were throwing off the results. From here, I used the fantastic package LexisNexisTools to parse out the data and metadata. Seriously, if you do text mining in newspapers with R, I can't recommend this package enough. Text mining was done with Tidytext. Today we're going to do some sentiment analysis. Sentiment analysisSentiment analysis is exactly what it sounds like: getting an analysis of the positive and negative sentiments in a text. There are a few different ways to do this. The AFINN corpus from Finn Arup Nielsen tags words with a value between -5 ("bastard", "motherfucker") and 5 ("outstanding", "superb"), excluding 0. We'll be using that. Nielsen assigned these tags by hand and then checked his ratings against other corpora. You can find his paper discussing methodology and validation of his ratings here. I like it because it gives some nuance between bivalent "positive" and "negative" assignments, like you find with Bing Liu's lexicon. A good first step is looking at the distribution of values. We see lots of 2 and 1 followed by -2 and -1. So more positive than negative and nothing really extreme. So far so good. Now let's look at sentiment over time. Using the AFINN corpus, I added up the values of the tags for each article by year. The problem, though, is that this could be affected by the number of words published in a year. More words could mean more positive things written, but if (let's say) 2012 had fewer words written on academic philosophy than 2022, then just plotting totals per year would make it seem as though 2012 was less positive than 2022. So I addressed this by scaling the total sentiment score to the number of words written: i.e. Score = Sum(Sentiment score per year) / Sum(Words published per year). That's what we find in this plot: Notice that the scores are all positive--that means that, on the whole, academic philosophy is being reported using more positive than negative language in newspapers. But also notice the downward trend over the last 10 years. We're being talked about less positively as time goes on. In 2022, for instance, the New York Times ran an article "At the Edge of a Cliff, Some Colleges Are Teaming Up to Survive." And Moneywise ran "How to Build a University Unafraid of True Intellectual Diversity." These are, on the whole, positive but there's quite a bit of negative in them too. Compare that with "We Need More STEM Majors with Liberal Arts Training" from the 2015 Salt Lake Tribune and "UW's Liberal Arts Grads Finding Work," from Wisconsin State Journal. What might explain the sharp dips from 2015 to 2016 and 2018 to 2019? I'm just taking a guess here, but the presidential race from 2016 might have a lot to do with it. There was quite a lot of "enough with the eggheads" talk. And 2019 was...well...COVID and the economic pressures that came along with that. Let's look at individual newspapers now. We're using the same scoring method of scaling sentiment by number of words written--but now by newspaper. I only included newspapers that had articles totaling more than 1000 words on academic philosophy over 10 years. The blue line is the average score of 0.281. The dashed lines are the standard deviation. The red line is the median score of 0.133. The newspaper to write most favorably about philosophy is the New York Times. I don't suppose that's a huge surprise; they did have The Stone after all. The outlet to write least favorably is USA Today Online along with the New York Observer. Both these outlets had negative scores, which means they put out more negative sentiments than positive ones. Most outlets are lukewarm in their reporting about philosophy, it seems, but most are below average. This is probably due to the three points waaaaay north of the standard deviation throwing off the average. The median is more representative of the bigger picture. But how do we interpret it? Recall that the AFINN corpus uses a scale of -5 to 5 to rank the sentiment of a term. And these scores are scaled to the number of words written. So if we find values close to 0, then it doesn't matter how many words are written--there are about as many positive sentiments as negative ones. This is what the median tells us: that, relative to the number of words written, there are slightly more positive sentiments than negative ones. The Alaska Dispatch News has relatively fewer positive sentiments than the Spokesman Review--which, I might add, is above both the median and the mean. Go Spokane! Whether the outlet ranks above or below a score of 0 tells us whether there are more positive or negative things said. USA Today Online, for example, could only get a negative score if there were more negative sentiments than positive ones. Note that this fits with sorts of intuitions primed by the histogram above. Well that's it for now. If there's anything else you'd like to see analyzed, let me know. And I'm making a zip file of the articles I used for analysis available here if anyone else want to play with them.
Comments are closed.
|
About me
I do mind and epistemology and have an irrational interest in data analysis and agent-based modeling. Old
|