This should be fixed now.
Posts by Gabor Csardi
PSA: if you are on R 4.4.x or older and suddenly the pak #Rstats package fails to install from source, then here are some workarounds: github.com/r-lib/pak/is...
I am also submitting a new version right now to fix this.
💥🇭🇺🗳️ BREAKING: Péter Magyar says Viktor Orbán called to concede and congratulate him.
Magyar will be Hungary’s next prime minister and, as it stands, is set to secure a 2/3 supermajority – enough to fully dismantle Orbán’s system.
A 16-year chapter is over.
A thread view on the R Mailing List Archives showing a message titled "macos 26 considerations" from March 2026 on the R-SIG-Mac list, with replies from Simon Urbanek, Brian Ripley, Gabor Csardi, and Peter Dalgaard visible in the thread panel below.
Every message is parsed, threaded, and indexed. You can browse threads, see who replied to whom, and actually follow conversations that shaped the language.
Here's a recent R-SIG-Mac thread about macOS 26:
r-mailing-lists.thecoatlessprofessor.com/lists/r-sig-...
Our list of 2026 #rstats and #python summer internships has been posted.
We can't wait to work with you and make great things!
tidyverse.org/blog/2026/03...
🤯You can't make this up: amid Kremlin meddling in Hungary's election, OSCE Parliamentary Assembly sends Putin's former interpreter Daria Boyarskaya – sanctioned by Poland, detained by Lithuania – on an election observation mission to Budapest. More in my newsletter: vsquare.org/goulash-puti...
The newest edition of posit::glimpse() is here! 🚀
Read a roundup of major #RStats & #Python updates: ggplot2 4.0.0, dplyr 1.2.0, ellmer 0.4.0, Positron native Jupyter Notebook support , and more.
🎟️ Plus, registration for posit::conf(2026) is officially OPEN!
Find it here: posit.co/blog/posit-g...
Android Studio IDE showing an AndroidManifest.xml file for an app called webrios, alongside a Pixel 8 Pro emulator running the app. The emulator displays an R console with several executed commands: basic arithmetic (1 + 1 returning 2), a message function printing 'Hello Mike!', a warning call, a stop call producing an error, variable assignment, and a print statement. Each produced the expected R output. An input field at the bottom reads 'Enter R code...' with a send button.
Uh-oh, these might be the droids you're looking for...
The number one request after every webRios demo was Android support. Early stage, but we have a working R console inside a native Android view.
#rstats #webr #android
I’m happy to announce Rapp v0.3.0 — a package that makes it easy to build and share polished CLI applications written in R.
Read more: www.tidyverse.org/blog/2026/02...
This is not only stupid, but also false. You can use C libraries from C++, Java and C# (and more), and it already has an R and Python interface as well. We actually wrote it in C so it is as portable as possible.
"The core of the library is written in C. However, major modern languages like C++, Java, and C# are not supported."
:D Gem from a rejection for a paper on a project I no longer work on.
This workshop is tomorrow, don't miss your chance to register!
Details: bit.ly/3wBeY4S
Please share!
#AcademicSky #EconSky #RStats
I won't miss this one!
This is a very cool way to learn something and support Ukraine! 🇺🇦
poisonfrogs: Color Palettes Inspired by Neotropical Poison Frogs laurenoconnelllab.github.io/poisonfrogs/ #Rstats
A festive digital illustration features the blue R logo wearing a red Santa hat with white trim on the left. To its right stands a green Christmas tree made entirely of curly braces arranged in a triangular shape. White and light-blue %>% pipe symbols float across a dark blue, starry background like snowflakes. A speech bubble above the R logo says “Ho Ho Ho! 📦” in red text. At the bottom, white text reads: “R Package Development Advent Calendar 2025” and below it, “25 Days of Coding Magic • Dec 1–25.
My #RPackageAdvent2025 recap is live! 📦✨ Get the complete guide to modern R package development: setup, docs, testing, CI/CD, and CRAN submission. All 25 days of tips, tools, and best practices in one place! Dive in! #RStats #RPackageDevelopment
Link: https://drmo.site/8ny3eU
cli::cli_progress_bar("Processing files", total = length(files)) for (file in files) { # process file cli::cli_progress_update() }
cli::cli_alert_success("Package built successfully!") cli::cli_alert_warning("Missing documentation for {.fn my_function}") cli::cli_abort("Invalid input: {.val {invalid_value}}")
Day 23: cli - Beautiful Command Line Interfaces
Create user-friendly messages and progress indicators.
Pro Tip: Use semantic markup like {.fn function_name} and {.val value} for consistent formatting.
Resources: cli.r-lib.org
#RpackageAdvent2025 #rstats
❗️Our next workshop will be on Jan 8 , 6 pm CET titled Inference for non-probability samples with nonprobsvy package in R by
@mberesewicz.bsky.social
Register or sponsor a student by donating to support Ukraine!
Details: bit.ly/3wBeY4S
Please share!
#AcademicSky #EconSky #RStats
❗️Our next workshop will be on Dec 11 6 pm CET titled A Gentle Introduction to Mathematical Simulation in R by
@damiepak.bsky.social
Register or sponsor a student by donating to support Ukraine!
Details: bit.ly/3wBeY4S
Please share!
#AcademicSky #EconSky #RStats
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
In which use cases does #RStats excel for you compared to other languages?
If you've done it other ways and speak from experience, even better.
This workshop is tomorrow, don’t miss your chance to register!
Register or sponsor a student by donating to support Ukraine!
Details: bit.ly/3wBeY4S
Please share!
#AcademicSky #EconSky #RStats
woohoo this was super easy to do for course website Nº2 #QuartoPub - now I'm finally in compliance with Georgia rules
PDF: datavizf25.classes.andrewheiss.com/PMAP-8551-HE...
Site: datavizf25.classes.andrewheiss.com
Code: github.com/andrewheiss/...
❗️Our next workshop will be on Oct 16th, 6 pm CEST titled Structural Bayesian Techniques for Experimental and Behavioral Economics in R& Stan by @jamesbland.bsky.social
Register or sponsor a student by donating to support Ukraine!
Details: bit.ly/3wBeY4S
Please share!
#AcademicSky #EconSky #RStats
This is a way to tell if a non-base package is loaded:
invisible(lapply(loadedNamespaces(), function(x) stopifnot(identical(packageDescription(x)$Priority, "base"))))
You can tell user to run the script from the command line, non-interactively, that makes things more predictable, but of course they might still need to have a custom R profile that loads packages or sets options, etc.
Are you worried about packages that change the script's behavior? Or custom options? Or something else? You can check if any non-base package is loaded, but what if a user loads a package from their profile? Users also need to set custom options sometimes, e.g. for a http proxy.
The Disney brand, and the USA brand, sinking together. Parody from Dutch TV
www.youtube.com/watch?v=7vRX...
Isabella in front of the hex wall at rstudio::conf(2022)
Hi everyone! 👋 I’m Isabella @ivelasq3.bsky.social, formerly a data analyst, now at @posit.co, and your curator this week!
There’s always something new in #RStats. I'll be sharing:
✨ Favorite R packages + workflows
✨ News + tools you might have missed
✨ #PositConf2025 recaps
✨ A decade of R memes 🎉