The rise of process tracing (in Google Books)

For what it’s worth, I wanted to see how often ‘process tracing’ is mentioned in the offerings on Google Books. I was just curious and wanted to play around with the ngram R package which allows you to query Google Ngram containing data about Google Books books and retrieve it from within R. (You might as well use the Google Ngram viewer.)

The following figure contains the results for the simple query “process tracing” (code is below).

processtracing_GB

The results are telling because of a clear upward trend. It would be stronger if one were doing a case sensitive search (Process tracing; Process Tracing), but this is not so important here because the general picture would remain the same. This should not be surprising. What might be somewhat surprising is that the trend started in the 1980s and, after a plateau in the early 1990s, continued on from the mid-1990s. The intense discussion of process tracing in the methods literature only got started in the late 1990s, so one would have expected that the rise of process tracing started in the 2000s. However, the empirical literature sometimes rushes ahead of the methods literature and, after the publication of Designing Social Inquiry, it might have entered empirical research as a buzzword before the methods literature picked up on it.

In the end, however, this is all speculation, as a search on Google books is not a super-valid indicator for the prominence of a term. The query cannot be limited to the social sciences and an unknown share of mentions of ‘process tracing’ might belong to other disciplines using a different definition of this term.

If you want to play around with ngramr, here is all you need.

 

library(devtools)
install_github("ngramr", "seancarmody")
library(ngramr)
library(ggplot2)
pt <- ngram(c("process tracing"), year_start = 1970)
ggplot(pt, aes(x=Year, y=Frequency, colour=Phrase))
+ geom_line()
Advertisement

About ingorohlfing

I am a political scientist. My teaching and research covers social science methods with an emphasis on case studies, multi-method research, and philosophy of science concerned with causation, and causal inference. Substantively, I am working on party competition and parties as organizations.
This entry was posted in causal mechanism, process tracing, qualitative, R and tagged , , , , . Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.