Daniel Simons

@profsimons.bsky.social

Cognitive psychologist, co-author of NOBODY'S FOOL and THE INVISIBLE GORILLA. Fond of wearing gorilla suits in public.

“The articles in AMPPS offer, month in and month out, the invitation to practice aligning your values, intentions, and actions to do less scientific harm and reach for the methodological ceiling” Grateful to @dsbarra.bsky.social for continuing what @profsimons.bsky.social & co started at AMPPS!

David A. Sbarra@dsbarra.bsky.social · 10mo ago

My time as Editor of AMPPS is coming to an end-- here are some parting thoughts. journals.sagepub.com/doi/full/10.... .

One thing I wish I saw more from communicators especially on health & medicine: Let's be more vocal about the positives of interventions that work. Yes, it's important to push back on misinformation, poor research practices & clarify side effects. But let's not forget how important this all is.

🧵Next week, you will see people using something called Benford's Law to try to prove election fraud. ⛔️These people are wrong⛔️ I am a scientist who has published on Benford's Law. Let me tell you what it is and why what they are doing is mathematically incorrect. 1/

Here's a fun way to encourage students to always look at their data. A few years ago, I wrote a script that converts a black and white png to data and plots it.

Plotted version of png converted to data with regression fit line. It appears there's a positive association between steps and sleep. But the simulated data points spell out "OH NO!"Png showing "OH NO!" in black letters on white background

At the @psychscience.bsky.social journal AMPPS, we publish tutorials and have dedicated tutorial reviewers. TRs are go through all the code and each step of a tutorial, then provide feedback about whether it all works as it should. Grad students and post-docs are welcome to be TRs. Join us?

AMPPS Tutorial Reviewer Form

This form is designed to collect some brief information from potential "tutorial reviewers" for Advances in Methods and Practices in Psychological Science (AMPPS). AMPPS is committed to having our tut...

docs.google.com

I've abandoned the site that shall not be named. Signal-to-awfulness ratio is too low (keeping my account there to reserve the username). I'm glad to see this place building the vibe of pre-decline other-site

Open data sharing is a good thing; Protecting participant privacy is a good thing. Sometimes these two good things are in conflict. Our new preprint introduces a decision-making framework and open source tools to help share as openly as possible and as closed as necessary. osf.io/preprints/me...

Bild

For #rstats users, {renv} now provides similar functionality to {groundhog}. With your script open in RStudio, simply call renv::embed() & a code snippet will be inserted at the top with the script's version-specific dependencies and the code to install them 🧪#stats rstudio.github.io/renv/referen...

Calling embed() inspects the dependencies of the specified document then generates and inserts a call to use() that looks something like this:

renv::use(
  "digest@0.6.30",
  "rlang@0.3.4"
)
Then, when you next run your R script or render your .Rmd, use() will:

Create a temporary library path.

Install the requested packages and their recursive dependencies into that library.

Activate the library, so it's used for the rest of the script.