Power Analysis and Data Analysis in Cross-National Multi-Lab Studies: Lessons Learned from the Many Smiles Collaboration + Philosophy of Science Reflections

Marco Tullio Liuzza,“Magna Graecia” University of Catanzaro”

2023-05-26

Preamble

I blame/credit (depends on the beholder) ChatGPT4 for the title

More details here: https://chat.openai.com/c/c9c1fc78-e4d1-46d2-9138-abf27db0f560

The facial feedback hypothesis

The famous pen-in the mouth task

The facial feedback hypothesis failure to replicate

Wagenmakers et al. (2016) conducted a pre-registered replication across 17 labs using a similar procedure as Strack et al. (1988).

Meta-analysis from Coles et al.

The Many Smiles collaboration

Adversarial collaboration led by Nicholas Coles aimed to :

  1. Specify when effect should most reliably emerge.

  2. Determine best way to test those beliefs.

  3. Design and execute an international multi-lab experiment

The Many Smiles study: how did I get there?

  • Things (often) happen by chance

    • but networking increases chance (tip for ECRs!)

The Many Smiles study: research design 1

Can happy facial poses initiate or only modulate feelings of happiness?

The Many Smiles study: research design 2

Do facial poses only influence happiness if they resemble a natural expression?

The Many Smiles study: research design 3

Do facial poses only influence happiness if they resemble a natural expression?

The Many Smiles study: research design 4

Do facial poses only influence happiness if they resemble a natural expression?

The Many Smiles study: procedure

The Many Smiles study: power analysis assumptions

Results:

The Many Smiles study: power analysis in R 1

#---ESTIMATING PARAMETERS FROM THE PILOT STUDY
df <- read.csv("ManySmiles_clean_long.csv", stringsAsFactors = T) 
df$ID <- as.factor(df$exper_ssid_var) #ID as factor
df$z_happiness <- scale(df$happiness) #standardize the dependent variable
df$trial <- relevel(df$trial, ref="neutr") #neutral as reference
options('contrasts'=c("contr.sum", "contr.poly")) # set contrast sum
m1 <- lmer(z_happiness ~ condition*trial*study + (1|ID), data = df) # fit the model

bPose.pilot <- -fixef(m1)['trial1']*2 #contr sum happy > neutr
bEmoStim.pilot <- - fixef(m1)['study1']*2 #contr present > absent
bPoseEmoStim.pilot <- -fixef(m1)['trial1:study1']*4 # (happy_present > neutr_present) > (happy_absent > neutr_absent)

The Many Smiles study: power analysis in R 2

#---ESTIMATE RANDOM INTERCEPTS FOR THE HYPOTHESIZED EFFECTS FROM THE META-ANALYSIS

VarCorr(m1) #vcov is for the fixed, VarCorr for the Random
##  Groups   Name        Std.Dev.
##  ID       (Intercept) 0.69751 
##  Residual             0.60283
sigma.alphaSub.pilot <- as.data.frame(VarCorr(m1))[1, 'sdcor']
sigma.y.pilot <- as.data.frame(VarCorr(m1))[2, 'sdcor']

#---ESTIMATE RANDOM SLOPES FOR THE HYPOTHESIZED EFFECTS FROM THE META-ANALYSIS
se_meta = .068 #from Wagenmakers et al. 2016
sd_meta = se_meta*sqrt(17)

Data analysis 1

Frequentist analyses, Led by Nick Coles:

# fit model
models[["primary"]][["prereg"]] <-
  lmer(happiness ~ trial * condition * image +
         (1 | lab) + (1 | ResponseId) + 
         (0 + trial | lab) +
         (0 + condition | lab)  +
         (0 + image | lab) +
         (0 + trial : image | lab) +
         (0 + trial : condition | lab)  + 
         (0 + condition : image | lab) + 
         (0 + trial : condition : image | lab),
       data = DF.l.inc)

Data analysis 2

Bayesian Analyses, led by MTL and Marco Marozzi (Ca’ Foscari University of Venice)

pr <- "medium"
#pr <- "wide"
#pr <- "ultra-wide"
p.1 <- 
  lmBF(happiness ~ trial +
         ResponseId + lab + lab:trial, 
       whichRandom = c("ResponseId", "lab", "lab:trial"),
       rscaleFixed = pr,
       data = DF.l.inc,
       iterations = it)


p.0 <- 
  lmBF(happiness ~ 1 +
         ResponseId + lab + lab:trial, 
       whichRandom = c("ResponseId", "lab", "lab:trial"), 
       rscaleFixed = pr,
       data = DF.l.inc,
       iterations = it)

p <- p.1 / p.0 # 102.6253 ±9.38%

Results

  • Very strong support for the main effect of FFH \(BFs\_{10} > 61\)

  • Very strong support for interaction with the task \(BFs_{10} > 34\)

    • The effect of the FFH in the mimicry and voluntary action conditions: \(BFs_{10} > 25.2\)

    • There was moderate support for \(H_0\) in the pen-in-the mouth \(BFs_{01}> 9\)

Post publication (peer) review

Comment on a FB page:

“As a statistics student myself, I was surprised to see that multilevel regression was used (requiring a continuous scale DV) while ordinal multilevel regression should have been used, but it is Nature so statistical standard are low (one of the winning journals regarding publication of inflated effects).”

The meaning of hypothesis testing 1

The meaning of hypothesis testing 2

Conclusions

Thanks!

Nicholas Coles
Marco Marozzi
Fernando Marmolejo-Ramos

References

Buck, Ross. 1980. “Nonverbal Behavior and the Theory of Emotion: The Facial Feedback Hypothesis.” Journal of Personality and Social Psychology 38 (5): 811.
Coles, Nicholas A., Jeff T. Larsen, and Heather C. Lench. 2019. “A Meta-Analysis of the Facial Feedback Literature: Effects of Facial Feedback on Emotional Experience Are Small and Variable.” Psychological Bulletin 145 (6): 610–51. https://doi.org/10.1037/bul0000194.
Duhem, Pierre. 1908. Ziel Und Struktur Der Physikalischen Theorien von Pierre Duhem... Autorisierte Ubersetzung von Dr. Friedrich Adler... Mit Einem Vorwort von Ernst Mach. JA Barth.
Gawronski, Bertram, and Galen V Bodenhausen. 2015. Theory and Explanation in Social Psychology. Guilford Publications.
Gelman, Andrew, and Jennifer Hill. 2006. Data Analysis Using Regression and Multilevel/Hierarchical Models. Cambridge university press.
Liddell, Torrin M, and John K Kruschke. 2018. “Analyzing Ordinal Data with Metric Models: What Could Possibly Go Wrong?” Journal of Experimental Social Psychology 79: 328–48.
Quine, Willard van Orman. 1953. “Two Dogmas of Empiricism. In His from a Logical Point of View.” Harvard, Cambridge.
Strack, Fritz, Leonard L Martin, and Sabine Stepper. 1988. “Inhibiting and Facilitating Conditions of the Human Smile: A Nonobtrusive Test of the Facial Feedback Hypothesis.” Journal of Personality and Social Psychology 54 (5): 768.
Wagenmakers, E.-J., T. Beek, L. Dijkhoff, Q. F. Gronau, A. Acosta, R. B. Adams, D. N. Albohn, et al. 2016. “Registered Replication Report: Strack, Martin, & Stepper (1988).” Perspectives on Psychological Science 11 (6): 917–28. https://doi.org/10.1177/1745691616674458.