Antoine Vernet's Avatar

Antoine Vernet

@antoinevernet.com.bsky.social

Associate Professor in Management at UCL. Networks and Organizational Design. Mostly found reading. Very occasionally on Youtube: www.youtube.com/@antoinevernet

715 Followers  |  858 Following  |  2,692 Posts  |  Joined: 12.11.2024  |  2.1059

Latest posts by antoinevernet.com on Bluesky

Preview
Sweeteners can harm cognitive health equivalent to 1.6 years of ageing, study finds Researchers say low- and no-calorie sweeteners appear to affect thinking and memory in middle age

"Sweeteners can harm cognitive health equivalent to 1.6 years of ageing, study finds"

Or does it? Let's take a look at this "study"...

www.theguardian.com/food/2025/se...

05.09.2025 16:45 โ€” ๐Ÿ‘ 477    ๐Ÿ” 165    ๐Ÿ’ฌ 25    ๐Ÿ“Œ 105

Fun fact: it has been 56 days since I notified the editors of Neurology about glaring statistical errors in this peer-reviewed study on sweeteners and cognitive health.

No expression of concern, no correction, no retraction.

02.11.2025 16:06 โ€” ๐Ÿ‘ 10    ๐Ÿ” 1    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Post image

Evidence that academics have been complaining about service roles for about 3000 years...

02.11.2025 17:35 โ€” ๐Ÿ‘ 44    ๐Ÿ” 15    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Even in the era of zero-cost LLMs, some scientists are still crafting data for their clinical trials by hand... and getting published in the @bmj.com!

Inspiring.

pubpeer.com/publications...

02.11.2025 17:58 โ€” ๐Ÿ‘ 9    ๐Ÿ” 3    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

*puts his 20 AI generated position papers back in his bag*

The weather's been nice lately, don't you think?

02.11.2025 18:01 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

A house in our neighborhood gave out potatoes this year (itโ€™s a national trend, it turns out)

Kiddo who hates potatoes was excited he got one, but when he discovered, this afternoon, that I ate said potato (THAT HE WOULD NEVER EAT), there was Armageddon level rage

02.11.2025 00:47 โ€” ๐Ÿ‘ 28    ๐Ÿ” 1    ๐Ÿ’ฌ 3    ๐Ÿ“Œ 0
Preview
Economics Literature Search Full-text search across 15,000+ papers from top economics journals and NBER working papers. Track how empirical methods have evolved over time.

Dropping a beta version of this page while everyone is up and processing baseball!

This tool lets you search the full text of papers from the American Economic Review, American Economic Journal series, and over 30,000 NBER working papers.

paulgp.com/econlit-pipe...

02.11.2025 04:43 โ€” ๐Ÿ‘ 244    ๐Ÿ” 72    ๐Ÿ’ฌ 6    ๐Ÿ“Œ 3

๐Ÿ˜ญ now I feel old too!

01.11.2025 21:10 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
library(leaflet)
library(sf)
library(dplyr)

data_path <- "...gpkg"
tss_2024 <- read_sf(data_path, layer = "TSS Checklist")
boundary <- read_sf(data_path, layer = "TSS Boundary") |> st_transform(crs = 4326)

tss_traffic_sf <- tss_2024
tss_geographic_sf <- tss_2024
tss_timings_sf <- tss_2024

st_geometry(tss_geographic_sf) <- st_geometry(tss_geographic_sf) + 2
tss_geographic_sf <- tss_geographic_sf |> 
  st_set_crs(27700) |>  st_transform(crs = 4326)

st_geometry(tss_timings_sf) <- st_geometry(tss_timings_sf) - 2
tss_timings_sf <- tss_timings_sf |> 
  st_set_crs(27700) |>  st_transform(crs = 4326)

tss_traffic_sf <- tss_traffic_sf |> 
  st_set_crs(27700) |>  st_transform(crs = 4326)

leaflet() |> 
  addProviderTiles(providers$CartoDB.DarkMatter, group = "Dark") |>  
  addPolygons(data = boundary,
              fillColor = "transparent",
              weight = 1,
              color = "black") |> 
  addPolylines(data = tss_timings_sf,
               group = "TSS Timings",
               weight = 4,
               opacity = 0.5,
               color = "#878787",
               highlightOptions = highlightOptions(color = "#899499", weight = 6, opacity = 1)) |> 
  addPolylines(data = tss_geographic_sf,
               group = "Geographic",
               weight = 4,
               opacity = 0.5,
               color = "#95c11f",
               highlightOptions = highlightOptions(color = "#AAFF00", weight = 6, opacity = 1)) |> 
  addPolylines(data = tss_traffic_sf,
               group = "Traffic",
               weight = 4,
               color = "#1d71b8",
               highlightOptions = highlightOptions(color = "cyan", weight = 6, opacity = 1),
               opacity = 0.5)

library(leaflet) library(sf) library(dplyr) data_path <- "...gpkg" tss_2024 <- read_sf(data_path, layer = "TSS Checklist") boundary <- read_sf(data_path, layer = "TSS Boundary") |> st_transform(crs = 4326) tss_traffic_sf <- tss_2024 tss_geographic_sf <- tss_2024 tss_timings_sf <- tss_2024 st_geometry(tss_geographic_sf) <- st_geometry(tss_geographic_sf) + 2 tss_geographic_sf <- tss_geographic_sf |> st_set_crs(27700) |> st_transform(crs = 4326) st_geometry(tss_timings_sf) <- st_geometry(tss_timings_sf) - 2 tss_timings_sf <- tss_timings_sf |> st_set_crs(27700) |> st_transform(crs = 4326) tss_traffic_sf <- tss_traffic_sf |> st_set_crs(27700) |> st_transform(crs = 4326) leaflet() |> addProviderTiles(providers$CartoDB.DarkMatter, group = "Dark") |> addPolygons(data = boundary, fillColor = "transparent", weight = 1, color = "black") |> addPolylines(data = tss_timings_sf, group = "TSS Timings", weight = 4, opacity = 0.5, color = "#878787", highlightOptions = highlightOptions(color = "#899499", weight = 6, opacity = 1)) |> addPolylines(data = tss_geographic_sf, group = "Geographic", weight = 4, opacity = 0.5, color = "#95c11f", highlightOptions = highlightOptions(color = "#AAFF00", weight = 6, opacity = 1)) |> addPolylines(data = tss_traffic_sf, group = "Traffic", weight = 4, color = "#1d71b8", highlightOptions = highlightOptions(color = "cyan", weight = 6, opacity = 1), opacity = 0.5)

Post image

Interactive {leaflet} ma showing section of Leeds roadnetwork with 3 separate variables colour-coded and offset (+2m, 0, -2m)
#30DayMapChallenge | Day 02 - Lines #rstats
(code in alt)

01.11.2025 20:51 โ€” ๐Ÿ‘ 8    ๐Ÿ” 3    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
A joke scientific paper with the title "Over 90% of children diagnosed with autism consumed breast milk and/or formula mileL a comprehensive cross-sectional analysis of the obvious"

A joke scientific paper with the title "Over 90% of children diagnosed with autism consumed breast milk and/or formula mileL a comprehensive cross-sectional analysis of the obvious"

Who did this?!

01.11.2025 20:38 โ€” ๐Ÿ‘ 1116    ๐Ÿ” 296    ๐Ÿ’ฌ 67    ๐Ÿ“Œ 40
Cover of โ€œ233 Celsiusโ€ by Ray Bradbury

Cover of โ€œ233 Celsiusโ€ by Ray Bradbury

The first (1955) Danish edition of Ray Bradburyโ€™s FAHRENHEIT 451. Later editions did not convert the title, so this is the only SI-compatible edition! ๐ŸŽข

01.11.2025 19:55 โ€” ๐Ÿ‘ 1790    ๐Ÿ” 463    ๐Ÿ’ฌ 29    ๐Ÿ“Œ 45
Post image Post image

.@warwickecon.bsky.social has a number of vacancies for Assistant Professors (Macro & Development)

Coventry has canals, an amazing cathedral etc.
... is one hour from London,
20 mins from Birmingham
90 mins from the Peak District National Park

Apply here: ๐Ÿ‘‰ econjobmarket.org/positions/12...

01.11.2025 16:48 โ€” ๐Ÿ‘ 17    ๐Ÿ” 15    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
Mastering Apply: From Matrices to Multidimensional Neuroimaging Data - Dr. Mowinckelโ€™s Master apply() in R for multidimensional data analysis.

Just published! ๐ŸŽ‰ My new blog post tackles the mighty `apply()` function in R. Demystify `MARGIN` and master operations from matrices to 5D neuroimaging data. Say goodbye to loops! ๐Ÿง ๐Ÿ“Š

drmo.site/k40xD5

#RStats #DataScience #Neuroimaging

01.11.2025 18:53 โ€” ๐Ÿ‘ 16    ๐Ÿ” 7    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

This seems like a reasonable take given the state of Twitter

01.11.2025 19:20 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Would it not therefore be simpler/
For 30 Conservative MPs to write letters of no confidence in the people/
and elect another?

01.11.2025 18:33 โ€” ๐Ÿ‘ 165    ๐Ÿ” 18    ๐Ÿ’ฌ 7    ๐Ÿ“Œ 1
Preview
Obesity Rate Declining in U.S. The U.S. obesity rate is showing signs of abating from its 2022 high. GLP-1 antidiabetic injectables used for weight loss may be playing a role.

GLP-1 drug effect are showing up in health survey dataโ€ฆ news.gallup.com/poll/696599/...

01.11.2025 17:47 โ€” ๐Ÿ‘ 7    ๐Ÿ” 4    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

You'll do great! Good luck!

01.11.2025 12:59 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Post image

finally

01.11.2025 12:51 โ€” ๐Ÿ‘ 55    ๐Ÿ” 4    ๐Ÿ’ฌ 3    ๐Ÿ“Œ 0
Post image 01.11.2025 09:39 โ€” ๐Ÿ‘ 56    ๐Ÿ” 5    ๐Ÿ’ฌ 3    ๐Ÿ“Œ 0

S

01.11.2025 09:25 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

E

01.11.2025 09:25 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Y

01.11.2025 09:25 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

I always liked trilogies ๐Ÿ‘‡

01.11.2025 09:25 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Post image

I'm doing a workshop on R package development with Positron on Jan 15 2026. Register for the virtual workshop here: sites.google.com/view/dariia-... I'll cover devtools, usethis, testthat, covr, and a few AI tools along the way to help. #Rstats

31.10.2025 09:56 โ€” ๐Ÿ‘ 21    ๐Ÿ” 8    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I am with you, one letter titles are so much cooler!

01.11.2025 06:52 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

I wonder if gen AI is going to eventually so infest online spaces with garbage, awful, horrifying, traumatic audiovisual content that it will simply kill them.

Our net infrastructure is simply not built to contain whatโ€™s coming. In fact it is almost built to magnify and multiply all the awfulness.

01.11.2025 02:11 โ€” ๐Ÿ‘ 9    ๐Ÿ” 2    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Sadly, the kids are wise enough to know that if it is useful to me, it can't be fun for them. So they just refuse any such challenges

31.10.2025 21:43 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I just watched a video of someone explaining what they did to entertain their toddler instead of giving them an iPad. One of the things was to have them watch a movie. Like, what do they think the kid does on the iPad? Catch up on filing his expense claims? ๐Ÿคช

31.10.2025 20:44 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Medieval picture of a smiling man being stabbed all kinds of ways by three smiling assassins

Medieval picture of a smiling man being stabbed all kinds of ways by three smiling assassins

My paper in the review process

31.10.2025 19:58 โ€” ๐Ÿ‘ 117    ๐Ÿ” 6    ๐Ÿ’ฌ 12    ๐Ÿ“Œ 3
Post image

R version 4.5.2
(Not) Part in a Rumble
#rstats

31.10.2025 18:23 โ€” ๐Ÿ‘ 5    ๐Ÿ” 1    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

@antoinevernet.com is following 20 prominent accounts