10 November 2023

Attack of the 50 foot research assistants: Lee et al. (2019), Study 3

This post is about some issues in Study 3 of the following article:

 Lee, J. J., Hardin, A. E., Parmar, B., & Gino, F. (2019). The interpersonal costs of dishonesty: How dishonest behavior reduces individuals' ability to read others' emotions. Journal of Experimental Psychology: General, 148(9), 1557–1574. https://doi.org/10.1037/xge0000639

On 2023-11-06 I was able to download the article from here.

This article is paper #29 in the Many Co-Authors project, where researchers who have co-authored papers with Professor Francesca Gino are reporting the provenance of the data in those papers, following the discovery of problems with the data in four articles co-authored by Professor Gino.
 
In the tables on the Many Co-Authors page for paper #29, two of the three co-authors of this article have so far (2023-11-10) provided information about the provenance of the data for this article, with both indicating that Professor Gino was involved in the data collection for Study 3. This note from Julia Lee Cunningham, the lead author, provides further confirmation:

For Study 3, Gino’s research assistant ran the laboratory study at Harvard Business School Research Lab for the partial data on Gino’s Qualtrics account. The co-authors have access to the raw data and were able to reproduce the key published results for Study 3.

In this study, pairs of participants interacted by telling each other stories. In one condition ("dishonest"), one member of the pair (A) told a fake story and the other (B) told a true story. In the other condition ("honest"), both members of the pair told true stories. Then, B evaluated their emotions during the exercise, and A evaluated their perceptions of B's emotions. The dependent variable ("emotional accuracy") was the ability of A to accurately evaluate how B had been feeling during the exercise. The results showed that when A had been dishonest (by telling a fake story), they were less accurate in their evaluation of B's emotional state.
 
The dataset for Study 3 is available as part of the OSF repository for the whole article here. It consists of an SPSS data file (.SAV) and a "syntax" (code) file (.SPS). I do not currently have an SPSS licence, so I was unable to run the code, but it seems to be fairly straightforward, running the focal t test from the study followed by the ANCOVAs to test whether gender moderated the relationship between condition and emotional accuracy.
 
I converted the dataset file to .CSV format in R and was then able to replicate the focal result of the study ("participants in the dishonest condition (M = 1.58, SD = 0.63) were significantly less
accurate at detecting others’ mental and affective states than those in the honest condition (M=1.39, SD = 0.54), t(209) = 2.37, p = .019", p. 1564, emphasis in original). My R code gave me this result:

> t.test(df.repl.dis$EmoAcc, df.repl.hon$EmoAcc, var.equal=TRUE)

Two Sample t-test

data: df.repl.dis$EmoAcc and df.repl.hon$EmoAcc
t = 2.369, df = 209, p-value = 0.01875

However, this is not the whole story. Although the dataset contains records from 250 pairs of participants, the article states (p. 1564):
 
As determined by research assistants monitoring each session, pairs were excluded for the following reasons: the wrong partner told their story first; they asked so many questions during the session that it became apparent they were not actually reading their survey instructions or questions (e.g., “What story am I supposed to be telling?”); or they were actively on their phone during the storytelling portion of the session. Exclusions were due to the actions of either individual in the pair; thus, of the 500 individuals, 39 did not follow instructions. This resulted in 106 pairs in the dishonest condition and 105 pairs in the honest condition.

The final total of 211 pairs is confirmed by the 209 degrees of freedom of the above t test.

Conveniently, the results for the 39 excluded pairs are available in the dataset. They are excluded from analysis based on a variable named "Exclude_LabNotes" (although sadly, despite this name, the OSF data repository does not contain any lab notes that might explain the basis on which each exclusion was made). It is thus possible to run the analyses on the full dataset of 250 pairs, with no exclusions. When I did that, I obtained this result:

> t.test(df.full.dis$EmoAcc, df.full.hon$EmoAcc, var.equal=TRUE)

Two Sample t-test

data: df.full.dis$EmoAcc and df.full.hon$EmoAcc
t = 0.20148, df = 246, p-value = 0.8405

(Alert readers may notice that the degrees of freedom for this independent t test are only 246 rather than the expected 248. On inspection of the dataset, it appears that one record has NA for experimental condition and another has NA for emotional accuracy. Both of these records were also manually excluded by the research assistants, but they could not have been used in any of the t tests anyway. Hence, it seems fairer to say that 37 out of 248 participant pairs, rather than 39 out of 250, were excluded based on notes made by the RAs.)
 
As you can see, there is quite a difference from the previous t test (p = 0.8405 versus p = 0.01875). Had these 37 participant pairs not been excluded, there would be no difference between the conditions; put another way, the exclusions drive the entire effect. I ran the same t test on (only) these excluded participants:

> t.test(df.dis$EmoAcc, df.hon$EmoAcc, var.equal=TRUE)

Two Sample t-test

data: df.exconly.dis$EmoAcc and df.
exconly.hon$EmoAcc
t = -4.1645, df = 35, p-value = 0.0001935

Cohen's d for this test is 1.412, which is a very large effect indeed among people who are not paying attention.
 
I think it is worth illustrating these results graphically. First, a summary of the three t tests:
Second, an illustration of where each observation was dropped from its respective per-condition sample:
[[Edit 2023-11-11 19:05 UTC: I updated the second figure above. The previous version reported "t(34) = 4.56", reflecting a t test with equal variances not assumed in which the calculated degrees of freedom were 34.466. This is actually the more correct way to calculate the t statistic, but I have been using "equal variances assumed" in all of the other analyses in this post for compatibility with the original article, which used analyses from SPSS in which the assumption of equal variances is the default. See also this article. ]]
 
This is quite remarkable. One might imagine that participants who were not paying attention to the instructions, or goofing off on their phones, would, overall, give responses that would show no effect, because their individual responses would have been noisy and/or because the set of excluded participants was approximately balanced across conditions (and there is no difference between the conditions for the full sample). Indeed, a legitimate reason to exclude these participants would be that their results are likely to be uninformative noise and so, if they were numerous enough, their inclusion might lead to a Type II error. But instead, it seems that these excluded participants showed a very strong effect in the opposite direction to the hypothesis (as shown by the negative t statistic). That is, if these results are to be believed, something about the fact that either A or B was not following the study instructions made A much better (or less bad) at determining B's emotions when telling a fake (versus true) story. There were 14 excluded participant pairs in the "dishonest" condition, with a mean emotional accuracy score (lower = more accurate) for A of 1.143, and 23 in the "honest" condition, with a mean emotional accuracy score of 2.076; for comparison, the mean score for the full sample across both conditions is 1.523.

I hope the reader will forgive me for saying that this explanation does not seem very likely — and if it were true, it would presumably be the basis of intense interest among psychologists. Rather, there seem to be two other plausible explanations (but feel free to point out any others that you can think of in the comments). One is that the extreme results of the excluded participants arose by chance — and, hence, the apparent effect in favour of the authors' hypothesis caused by their exclusion was also the result of chance. The other, painful though it is to contemplate, is that the research assistants may have excluded participants in order to give a result in line with the hypotheses.
 
I simulated how likely it would be for the removal of 37 random participant pairs from the sample of 248 complete records to give a statistically significant result. I ran 1,000,000 simulations and obtained only 12 p values less than 0.05 for the t test on the resulting sample of 211 pairs. The smallest p value that I obtained was 0.03387, which is higher than the one reported in the article. To put it another way, out of a million attempts I was unable to obtain even one result as extreme as the published one by chance.

Now, this process can surely be subjected to some degree of criticism from a statistical inference point of view. After all, if the report in the article is correct, the excluded participants were not selected truly at random, and they might differ in other ways from the rest of the sample, with those differences perhaps interacting with the experimental condition. There might be other, more formally correct ways to test the idea that the exclusions of participant pairs were independent of their scores. However, as mentioned earlier, I do not think that it can be seriously argued that there was some extremely powerful psychological process, contrary to the study hypothesis, taking place specifically with the excluded participants.

So it seems to me that, by elimination, the most plausible remaining explanation is that the research assistants selected which participants to exclude based on their scores, in such a way as to produce results that favoured the authors' hypothesis. Exactly how they were able to do that, given that those scores were only available in Qualtrics, when their job was (presumably) to help participants sitting in the laboratory to understand the process and to check who was spending time on their phone, is unclear to me, but doubtless there is a coherent explanation. Indeed, Professor Gino has already suggested (see point 274 here) that research assistants may have been responsible for perceived anomalies in other studies on which she was an author, although so far no details on how exactly this might have happened have been made public. I hope that she will be able to track down the RAs in this case and establish the truth of the matter with them.

Supporting files

I have made my analysis code available here. I encourage you to use the authors' original SPSS data file from the OSF link given above, and convert it to CSV format using the commented-out line at the top of the script. However, as a convenience, I have made a copy of that CSV file available along with my code.
 

Acknowledgements

I thank Daniël Lakens and two anonymous readers of earlier drafts of this post for their comments. One of those people also kindly provided the two charts in the post.

 

I wrote to Julia Lee Cunningham to give her a heads up about this post. With her permission, I will quote any reply that she might make here.


12 comments:

  1. I like the approach of simulating removing pairs from the dataset. As you have mentioned previously, the practice of generating a real dataset and then removing or changing only parts of it will usually make it much harder to detect fraud, compared to when someone makes up data entirely from scratch. In this case, we are fortunate to have the excluded participants' data!

    ReplyDelete
  2. Very well done, thorough, and convincing. I have been impressed by your work since the Wansink scandal. Science thanks you! :)

    ReplyDelete
  3. You can replace the download and the first few lines with:

    url <- "https://osf.io/download/hr9ev/"
    t <- tempfile(fileext = ".zip")
    download.file(url, t)
    data <- unzip(t, "OSF Data for Posting/S3/190404 - Study X Data.sav")
    library(haven)
    df <- read_sav(data)

    ReplyDelete
  4. You can skip the manual download if you replace the first few lines with:

    url <- "https://osf.io/download/hr9ev/"
    t <- tempfile(fileext = ".zip")
    download.file(url, t)
    data <- unzip(t, "OSF Data for Posting/S3/190404 - Study X Data.sav")
    library(haven)
    df <- read_sav(data)

    ReplyDelete
  5. Well done, and thanks for your work.

    Just a minor sidecomment: SPSS has a GNU open-source clone called PSPP, so you can run everything without a license.

    In addition, ChapGPT v4 code analyzer does an amazing job converting SPSS to R code. You'd be amazed.

    Hope that helps you with future projects.

    ReplyDelete
  6. Hi Nick, does it nor come to mind that the whole study hypothesis is utter BS? Rating /reading somebodies emotion is dependent on honesty in a previous task? Psychology is not Science!

    ReplyDelete
    Replies
    1. I have quite a lot of sympathy for this argument, but for the purposes of this post I am trying to play by "The Rules of the Game Called Psychological Science" (Bakker et al., 2012, 10.1177/1745691612459).

      Delete
    2. It sounds implausible yes, but injecting antigens to help the body build resistance to some specific virus would have seemed implausible to people as well before vaccination was proposed. Saying an entire field is "not science" because one researcher tested a hypothesis that seemed implausible, is itself quite unscientific.

      Delete
    3. @Anonymous2: I suspect I can guess who Anonymous1 is, because this is not the first time I have seen that exclamation. I don't think that A1 is making it based solely on one researcher testing an implausible hypothesis. There are quite a few people in psychology who are concerned that the whole field has "limitations and challenges" (cough) as a scientific enterprise.

      Delete
  7. Hi. I appreciate your service to the field and am not one of the authors. I'm actually not even in this field or do not use experiments as main methods. I'm just someone who is following the whole saga.

    I have a question about how you arrived at your interpretation that something fishy is going on (which I take your post as insinuating, but sorry if it is not). If it really is the case that excluded pairs of participants were unified in a sense that they were not following the instructions or not paying attention, which I'd imagine happens quite often in in-person lab studies using college students, shouldn't we also see a systematic pattern of behaviors such as one that the authors find? Sure, your hypothesis that those who don't pay attention should be less likely to guess their partner's emotion is very plausible, but that's also a hypothesis and not a certain thing. (Perhaps people can guess someone's emotion better when they put less energy into it. Something like overthinking lower performance on that dimension). Actually, and more broadly, if such excluded participants showed patterns that were random or map on exactly the same way as included participants, I'd be MORE worried, since that may mean that results from the included participants has nothing to do with the manipulation (which would require paying attention/following instructions).

    Of course, this does NOT rule out the possibility that something fishy is going on. But this does not rule in that possibility much either, in my view. Given the weight of the accusations, I would err on the side of caution, and this does not seem to meet that bar. That said, I might be missing something critical about how you arrived at the interpretation, which is why I wanted to bring this directly to you. Thank you.

    ReplyDelete
    Replies
    1. >>Perhaps people can guess someone's emotion better when they put less energy into it.

      But the excluded participants were in both conditions. So your hypothesis would have to be "Perhaps people can guess someone's emotion better when they put less energy into it, but only if they are being dishonest. If they are being honest then the opposite happens". I already addressed that in the post when I wrote "I hope the reader will forgive me for saying that this explanation does not seem very likely — and if it were true, it would presumably be the basis of intense interest among psychologists". But if you genuinely think that such an interaction is possible, don't let me stop you applying for a grant to study it.

      Delete
    2. The excluded participants have d=1.42. In other words, not only do inattentive people guess emotions better when they are lying, but the magnitude of their advantage is (as I think Nick said a while back) like the magnitude of peoples' preference for a box of chocolates versus having an anvil dropped on their foot. I find this hard to imagine. But if it's real it should be dead easy to replicate!

      I wish reviewers of psychology papers had a bit more wariness about d in general. Very strong impacts of very minor interventions are a priori unreasonable (partly because if minor interventions pushed behavior around that much, behavior would be so noisy you'd have trouble getting at any particular interaction) but people seem to have no trouble publishing them anyway.

      Delete