Harry D. Coulson's Avatar

Harry D. Coulson

@harrydcoulson.bsky.social

PhD student @UCL researching judgement and decision-making & pro-environmental behaviour change. Current focus: social norms & rank-based nudging. Based in Basel πŸ‡¨πŸ‡­

3,620 Followers  |  294 Following  |  22 Posts  |  Joined: 03.11.2024
Posts Following

Posts by Harry D. Coulson (@harrydcoulson.bsky.social)

Video thumbnail

I started making this R package 6 years ago. I finally have it in a state I'm happy with, thanks to Claude Code #Rstats github.com/MattCowgill/...

18.02.2026 11:48 β€” πŸ‘ 188    πŸ” 38    πŸ’¬ 8    πŸ“Œ 6
Preview
The Decision Process Scale (DPS): Self-report measures of reliance on rules, cost–benefit reasoning, intuition, and deliberation in (moral) decision-making - Behavior Research Methods Understanding how people make decisions in specific situations is a central challenge in (moral) psychology research. Yet there are no existing self-report scales for measuring the process of decision...

Now out in Behavior Research Methods! With @maxmaier.bsky.social & Falk Lieder, we developed the 12-item Decision Process Scale, which measures how much people rely on rules vs. cost-benefit reasoning and intuition vs. deliberation in individual dilemmas.

link.springer.com/article/10.3...

17.02.2026 14:31 β€” πŸ‘ 4    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0

Reject button is red
Your sloppiness makes me blue
Yours sicerely
Reviewer #2

#academicvalentine

14.02.2026 15:01 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
BAMB! 2026 | Barcelona Summer School for Advanced Modeling of Behavior Intensive training for experienced researchers in cognitive science, computational neuroscience and neuro-AI. Five interconnected modules, expert faculty, hands-on projects. July 12-23, 2026.

Applications for BAMB! 2026 are officially open!

Join us in Barcelona (July 12–23) to master the art of behavioral modeling with our incredible faculty:

@meganakpeters.bsky.social
@marcelomattar.bsky.social
@khamascience.bsky.social
@thecharleywu.bsky.social

Apply now here: www.bambschool.org

12.02.2026 13:08 β€” πŸ‘ 26    πŸ” 27    πŸ’¬ 1    πŸ“Œ 3
Fragebogen | Seite 1

Dear colleagues - we want to better understand perceptions of data fraud and its detection and need your support! Are you currently a #researcher in #psych (or related fields) working with #data? Perfect - please respond to & share this short study (7min): sosci.rlp.net/detection/?r... Thank you!! 🫢

11.02.2026 15:08 β€” πŸ‘ 14    πŸ” 17    πŸ’¬ 1    πŸ“Œ 2
Bluesky Network Analyzer Find accounts that you don't follow (yet) but are followed by lots of accounts that you do follow.

Also, been using this to find people to follow for a while:

bsky-follow-finder.theo.io

Just realised that it's also from @theo.io, nice work, and thanks!

09.02.2026 21:35 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Nice bluesky tool!

09.02.2026 21:30 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

Next Wednesday (Feb 11th) Dr @thecomplexbrain.bsky.social will join to guide us on how to uncover cognitive processes from open-text box data (full details: surl.li/mqtofs). All welcome (in person)!

05.02.2026 15:48 β€” πŸ‘ 4    πŸ” 1    πŸ’¬ 1    πŸ“Œ 2
Preview
dplyr 1.2.0 dplyr 1.2.0 fills in some important gaps in dplyr's API: we've added a new complement to `filter()` focused on dropping rows, and we've expanded the `case_when()` family with three new recoding and re...

dplyr 1.2.0 is out now and we are SO excited!

- `filter_out()` for dropping rows

- `recode_values()`, `replace_values()`, and `replace_when()` that join `case_when()` as a complete family of recoding/replacing tools

These are huge quality of life wins for #rstats!

tidyverse.org/blog/2026/02...

04.02.2026 11:39 β€” πŸ‘ 465    πŸ” 133    πŸ’¬ 12    πŸ“Œ 14
Post image

Early draft of my ebook for the course:

ianhussey.quarto.pub/reproducible...

05.02.2026 12:40 β€” πŸ‘ 28    πŸ” 8    πŸ’¬ 1    πŸ“Œ 0
Screen shot of a youtube video titled "AI.FILL Function Explained: 10X Productivity in Excel with AI" with the caption "Let ChatGPT fill your missing data"

Screen shot of a youtube video titled "AI.FILL Function Explained: 10X Productivity in Excel with AI" with the caption "Let ChatGPT fill your missing data"

Don't you f**king dare.

03.02.2026 14:56 β€” πŸ‘ 307    πŸ” 65    πŸ’¬ 29    πŸ“Œ 39
Post image

Researchers often present participants with stimuli that are assumed to reliably and exclusively evoke one, and only one, emotion category. This study shows that this is rarely the case for some widely used stimuli.

doi.org/10.1037/emo0...

03.02.2026 14:09 β€” πŸ‘ 2    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0

I built a basic shiny app to check doi's (with help of LLM, Claude Opus). The use case is for when students submit work with fabricated references (I used to randomly check, this will systematically check). Note it comes with no warranties,... . tvpollet.github.io/2026-01-30-D...

30.01.2026 15:33 β€” πŸ‘ 7    πŸ” 3    πŸ’¬ 1    πŸ“Œ 1
library(tidyplots)

gene_expression |> 
  head(n = 180) |> 
  tidyplot(x = group, y = expression, color = group) |> 
  add_mean_bar(alpha = 0.3) |> 
  add_sem_errorbar() |> 
  add_data_points_beeswarm(white_border = TRUE) |> 
  adjust_size(width = 25, height = 25) |> 
  split_plot(by = external_gene_name, ncol = 3, nrow = 3)

library(tidyplots) gene_expression |> head(n = 180) |> tidyplot(x = group, y = expression, color = group) |> add_mean_bar(alpha = 0.3) |> add_sem_errorbar() |> add_data_points_beeswarm(white_border = TRUE) |> adjust_size(width = 25, height = 25) |> split_plot(by = external_gene_name, ncol = 3, nrow = 3)

This is how you can split a plot into multiple subplots using #tidyplots πŸš€

#rstats #dataviz #phd

30.01.2026 15:42 β€” πŸ‘ 19    πŸ” 1    πŸ’¬ 0    πŸ“Œ 1
Post image

Join us for the LOVE REPLICATIONS WEEK from March 2 - 6 with talks on reproductions, replications, how to find them, how to conduct them, how to have them conducted on your study, where to publish them, and much more!

30.01.2026 11:44 β€” πŸ‘ 20    πŸ” 16    πŸ’¬ 2    πŸ“Œ 1

Really nice paper by @neillewisjr.bsky.social doi.org/10.1037/amp0...

29.01.2026 17:47 β€” πŸ‘ 4    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
Why Risk it, When You Can {rix} it: A Tutorial for Computational Reproducibility Focused on Simulation Studies

Why Risk it, When You Can {rix} it: A Tutorial for Computational Reproducibility Focused on Simulation Studies

May be of interest to the reproducibility folks: New tutorial on computational reproducibility for simulation studies just dropped! felipelfv.github.io/Why-risk-it-...

by @felipefv.bsky.social, Jason Geller & @brodriguesco.bsky.social

28.01.2026 11:26 β€” πŸ‘ 63    πŸ” 17    πŸ’¬ 6    πŸ“Œ 0

Highly recommend Replication Games!

Key takeaways:
1. Great way to learn about other psych methods
2. Improve on stats
3. More enjoyable with others
4. Realised my own code needs improving after being on the other side of a paper (replicating)

Thanks @fialalenka.bsky.social @rujoanna.bsky.social

27.01.2026 14:25 β€” πŸ‘ 3    πŸ” 2    πŸ’¬ 1    πŸ“Œ 1

The Iowa Gambling Task is an extreme example of Jingle Fallacy and schmeasurement.

In 100 articles we found 244 different ways of scoring it, 177 were never reused. Correlations between them range -.99 to .99.

At the same time, we show meta-analyses combine these results as if they’re equivalent.

25.01.2026 12:01 β€” πŸ‘ 140    πŸ” 54    πŸ’¬ 5    πŸ“Œ 4
Preview
RegCheck RegCheck is an AI tool to compare preregistrations with papers instantly.

Comparing registrations to published papers is essential to research integrity - and almost no one does it routinely because it's slow, messy, and time-demanding.

RegCheck was built to help make this process easier.

Today, we launch RegCheck V2.

🧡

regcheck.app

22.01.2026 11:05 β€” πŸ‘ 173    πŸ” 90    πŸ’¬ 8    πŸ“Œ 6
This paper in Management Science has been cited more than 6,000 times. Wall Street executives, top government officials, and even a former U.S. Vice President have all referenced it. It’s fatally fl...

This paper in Management Science has been cited more than 6,000 times. Wall Street execs, top govt officials, and even a former U.S. Vice President have all referenced it. It’s fatally flawed, and the scholarly community refuses to do anything about it.
statmodeling.stat.columbia.edu/2026/01/22/a...

22.01.2026 14:31 β€” πŸ‘ 28    πŸ” 13    πŸ’¬ 0    πŸ“Œ 2
Post image

Most popular decision-making models assume that cognitive processes are static over time. In our new paper in Psych Review, we offer a simple extension to evidence accumulation models that lets researchers account for systematic changes in parameters across time πŸ“ˆ

psycnet.apa.org/fulltext/202...

20.01.2026 22:25 β€” πŸ‘ 28    πŸ” 9    πŸ’¬ 1    πŸ“Œ 2
To encourage reuse of our data, Pew Research Center, with support from the John Templeton Foundation, invites researchers to submit proposals for new research publications that use one or more of the following datasets (collectively, Datasets) from the Global Religious Futures (GRF) project:  Global Restrictions on Religion 2007-2022 dataset. This cumulative dataset includes measures of government restrictions on religion and social hostilities involving religion in nearly 200 countries and territories. Spring 2024 Survey. This dataset includes measures of religion and spirituality in 35 countries. (Comparable data was also collected in 2023 and 2024 for the United States. The downloadable materials which accompany the international dataset include additional information about U.S. data.) Dataset of Global Religious Composition Estimates for 2010 and 2020. This dataset includes estimates of the size of seven major religious groups in more than 200 countries and territories. We encourag

To encourage reuse of our data, Pew Research Center, with support from the John Templeton Foundation, invites researchers to submit proposals for new research publications that use one or more of the following datasets (collectively, Datasets) from the Global Religious Futures (GRF) project: Global Restrictions on Religion 2007-2022 dataset. This cumulative dataset includes measures of government restrictions on religion and social hostilities involving religion in nearly 200 countries and territories. Spring 2024 Survey. This dataset includes measures of religion and spirituality in 35 countries. (Comparable data was also collected in 2023 and 2024 for the United States. The downloadable materials which accompany the international dataset include additional information about U.S. data.) Dataset of Global Religious Composition Estimates for 2010 and 2020. This dataset includes estimates of the size of seven major religious groups in more than 200 countries and territories. We encourag

Please share: Pew Research Center will provide $3,000 each for 19 new papers using our recent global datasets. We encourage reuse of our Pew-Templeton Global Religious Futures data!
https://www.pewresearch.org/2026/01/16/seeking-research-using-recent-pew-templeton-global-religious-futures-datasets/

17.01.2026 20:27 β€” πŸ‘ 137    πŸ” 110    πŸ’¬ 1    πŸ“Œ 6

⏳ Just over 2 weeks left to apply! ⏳

We are looking for talented Cognitive Neuroscientists to join our team at Trinity College Dublin for postdoc positions funded by a European Research Council (ERC) Consolidator grant.
www.jobs.ac.uk/job/DPV296/r...

www.ktsetsoslab.net/_files/ugd/0...

14.01.2026 12:43 β€” πŸ‘ 23    πŸ” 20    πŸ’¬ 2    πŸ“Œ 0

Come join us in Zurich! #openscience #replications #reproductions

11.12.2025 13:53 β€” πŸ‘ 0    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
Birth Lottery If you were reborn today, where would you land? And how would that change your life?

Giving what we can has implemented a fun game where you spin a globe to see how your starting point in life would compare if you were reborn today, randomly somewhere on earth.

www.givingwhatwecan.org/birth-lottery

25.12.2025 09:31 β€” πŸ‘ 272    πŸ” 106    πŸ’¬ 15    πŸ“Œ 13
Post image

If you’re looking for some holiday reading, my new book β€” Clearing the Air β€” is on offer at Β£1.99 on Kindle for the next 24 hours.

Hope you enjoy!

www.amazon.co.uk/Clearing-Air...

22.12.2025 06:22 β€” πŸ‘ 95    πŸ” 22    πŸ’¬ 11    πŸ“Œ 1
Preview
UZH: Lecturer Research Β«Psychological Data Management and -StewardshipΒ» The Department of Psychology at the University of Zurich invites applications for a tenured Lecturer Research position for Β«Psychological Data Management and -StewardshipΒ». We are seeking an enthusias...

The Department of Psychology @uzh-ch.bsky.social has an open position for a tenured Lecturer (Research) Β«Psychological Data Management and -StewardshipΒ»

jobs.uzh.ch/job-vacancie...

#psychjobs

15.12.2025 11:39 β€” πŸ‘ 20    πŸ” 25    πŸ’¬ 0    πŸ“Œ 1
This book will be my magnum opus... unless you don't like it, in which case it's just one of a number of ideas I'm playing around with

This book will be my magnum opus... unless you don't like it, in which case it's just one of a number of ideas I'm playing around with

#AcademicSky #AcademicChatter

Me sending draft manuscript to first-time collaborator πŸ‘‡

@tomgauld.bsky.social

11.12.2025 17:08 β€” πŸ‘ 12    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0