We are looking for #rstats community feedback on 3 new dplyr functions!
We're aiming to expand the `filter()` family:
- `filter()` to keep rows
- `filter_out()` to drop rows
- `when_any()` and `when_all()` as modifiers
Read more and leave feedback here:
github.com/tidyverse/ti...
We're aiming to expand the `filter()` family:
- `filter()` to keep rows
- `filter_out()` to drop rows
- `when_any()` and `when_all()` as modifiers
Read more and leave feedback here:
github.com/tidyverse/ti...
November 7, 2025 at 4:03 PM
We are looking for #rstats community feedback on 3 new dplyr functions!
We're aiming to expand the `filter()` family:
- `filter()` to keep rows
- `filter_out()` to drop rows
- `when_any()` and `when_all()` as modifiers
Read more and leave feedback here:
github.com/tidyverse/ti...
We're aiming to expand the `filter()` family:
- `filter()` to keep rows
- `filter_out()` to drop rows
- `when_any()` and `when_all()` as modifiers
Read more and leave feedback here:
github.com/tidyverse/ti...
Nooooo!!
Every weekend I look forward to these posts. Like tidyverse & food, what could go wrong.
Every weekend I look forward to these posts. Like tidyverse & food, what could go wrong.
November 10, 2025 at 4:16 PM
Nooooo!!
Every weekend I look forward to these posts. Like tidyverse & food, what could go wrong.
Every weekend I look forward to these posts. Like tidyverse & food, what could go wrong.
And stringr 1.6.0 is out too: tidyverse.org/blog/2025/11.... A fairly small release but some handy improvements thanks to tidyverse dev day contributors! #rstats
stringr 1.6.0
This release deprecates `str_like(ignore_case)` and changes the behaviour of `str_replace_all()` for function replacements. It also introduces `str_ilike()` for case-insensitive SQL-like pattern matc...
tidyverse.org
November 4, 2025 at 10:45 PM
And stringr 1.6.0 is out too: tidyverse.org/blog/2025/11.... A fairly small release but some handy improvements thanks to tidyverse dev day contributors! #rstats
#TidyTuesday in the style of Chartle showing estimated incidence of TB
Code: github.com/borstell/tid...
#R4DS #DataViz
Code: github.com/borstell/tid...
#R4DS #DataViz
November 10, 2025 at 9:48 PM
#TidyTuesday in the style of Chartle showing estimated incidence of TB
Code: github.com/borstell/tid...
#R4DS #DataViz
Code: github.com/borstell/tid...
#R4DS #DataViz
Looking for advice from the #rstats community!
I'm was asked by my spouse to teach her R for her research analysis. She has zero programming experience and currently uses Excel.
Main question: Do I start her with tidyverse or base R?
Any tips or resources are welcome!
I'm was asked by my spouse to teach her R for her research analysis. She has zero programming experience and currently uses Excel.
Main question: Do I start her with tidyverse or base R?
Any tips or resources are welcome!
November 7, 2025 at 6:02 AM
Looking for advice from the #rstats community!
I'm was asked by my spouse to teach her R for her research analysis. She has zero programming experience and currently uses Excel.
Main question: Do I start her with tidyverse or base R?
Any tips or resources are welcome!
I'm was asked by my spouse to teach her R for her research analysis. She has zero programming experience and currently uses Excel.
Main question: Do I start her with tidyverse or base R?
Any tips or resources are welcome!
Os gatos ggplot, pandas, tidyverse, matplotlib e seaborn
A galera tem mania de dar nomes de ninhas de gatos dentro de temas. Qual seria a ninhada na sua especialidade profissional?
Eu começo: Briefing, Job, Brainstorm e Learning
Eu começo: Briefing, Job, Brainstorm e Learning
November 5, 2025 at 1:28 AM
Os gatos ggplot, pandas, tidyverse, matplotlib e seaborn
I mean it's the DAG of the data generating process:
library(tidyverse)
N <- 5000
df <- tibble(
X_true = rnorm(N),
X_error = rnorm(N),
X_obs = X_true + X_error,
Y_error = rnorm(N),
Y = 3*X_true + Y_error
)
summary(lm(Y ~ X_obs, data = df))
library(tidyverse)
N <- 5000
df <- tibble(
X_true = rnorm(N),
X_error = rnorm(N),
X_obs = X_true + X_error,
Y_error = rnorm(N),
Y = 3*X_true + Y_error
)
summary(lm(Y ~ X_obs, data = df))
November 7, 2025 at 2:30 PM
I mean it's the DAG of the data generating process:
library(tidyverse)
N <- 5000
df <- tibble(
X_true = rnorm(N),
X_error = rnorm(N),
X_obs = X_true + X_error,
Y_error = rnorm(N),
Y = 3*X_true + Y_error
)
summary(lm(Y ~ X_obs, data = df))
library(tidyverse)
N <- 5000
df <- tibble(
X_true = rnorm(N),
X_error = rnorm(N),
X_obs = X_true + X_error,
Y_error = rnorm(N),
Y = 3*X_true + Y_error
)
summary(lm(Y ~ X_obs, data = df))
Going out on a limb here but the most exquisitely designed deeply domain specific functions in the #rstats #tidyverse are probably the tidyr::separate_ family.
separate_wider_regex() is my main. The patterns arg! Beautiful. The debug mode! So sympathetic to the user’s whole process.
separate_wider_regex() is my main. The patterns arg! Beautiful. The debug mode! So sympathetic to the user’s whole process.
November 4, 2025 at 6:35 AM
Going out on a limb here but the most exquisitely designed deeply domain specific functions in the #rstats #tidyverse are probably the tidyr::separate_ family.
separate_wider_regex() is my main. The patterns arg! Beautiful. The debug mode! So sympathetic to the user’s whole process.
separate_wider_regex() is my main. The patterns arg! Beautiful. The debug mode! So sympathetic to the user’s whole process.
I’ve finally had time to write another blog post after a couple of busy months. It’s a tutorial on how to create UpSet plots using only tidyverse packages (and patchwork) in #rstats
https://www.gl-eb.me/blog/posts/2025-11-02_upset/
#dataviz #ggplot2
https://www.gl-eb.me/blog/posts/2025-11-02_upset/
#dataviz #ggplot2
UpSet Plots in the Tidyverse – Gleb Ebert
How to create the components of an UpSet plot and combine them
www.gl-eb.me
November 2, 2025 at 3:23 PM
I’ve finally had time to write another blog post after a couple of busy months. It’s a tutorial on how to create UpSet plots using only tidyverse packages (and patchwork) in #rstats
https://www.gl-eb.me/blog/posts/2025-11-02_upset/
#dataviz #ggplot2
https://www.gl-eb.me/blog/posts/2025-11-02_upset/
#dataviz #ggplot2
#rstats tidypolars 0.15.0 is available!
tidypolars provides the tidyverse syntax while using polars for efficient computations.
This release:
- more support for string and date func.
- two func. to export partitioned output
- bug fixes
Changelog: www.tidypolars.etiennebacher.com/news/#tidypo...
tidypolars provides the tidyverse syntax while using polars for efficient computations.
This release:
- more support for string and date func.
- two func. to export partitioned output
- bug fixes
Changelog: www.tidypolars.etiennebacher.com/news/#tidypo...
Changelog
www.tidypolars.etiennebacher.com
November 3, 2025 at 8:06 PM
#rstats tidypolars 0.15.0 is available!
tidypolars provides the tidyverse syntax while using polars for efficient computations.
This release:
- more support for string and date func.
- two func. to export partitioned output
- bug fixes
Changelog: www.tidypolars.etiennebacher.com/news/#tidypo...
tidypolars provides the tidyverse syntax while using polars for efficient computations.
This release:
- more support for string and date func.
- two func. to export partitioned output
- bug fixes
Changelog: www.tidypolars.etiennebacher.com/news/#tidypo...
Curator: @jenrichmondPhD
@dslc.io welcomes you to week 44 of #TidyTuesday! We're exploring Lead concentration in Flint water samples in 2015!
📂 https://tidytues.day/2025/2025-11-04
📰 https://academic.oup.com/jrssig/article/14/2/16/7029247
#RStats #PyData #JuliaLang #DataViz #tidyverse #r4ds
@dslc.io welcomes you to week 44 of #TidyTuesday! We're exploring Lead concentration in Flint water samples in 2015!
📂 https://tidytues.day/2025/2025-11-04
📰 https://academic.oup.com/jrssig/article/14/2/16/7029247
#RStats #PyData #JuliaLang #DataViz #tidyverse #r4ds
November 3, 2025 at 1:40 PM
Curator: @jenrichmondPhD
@dslc.io welcomes you to week 44 of #TidyTuesday! We're exploring Lead concentration in Flint water samples in 2015!
📂 https://tidytues.day/2025/2025-11-04
📰 https://academic.oup.com/jrssig/article/14/2/16/7029247
#RStats #PyData #JuliaLang #DataViz #tidyverse #r4ds
@dslc.io welcomes you to week 44 of #TidyTuesday! We're exploring Lead concentration in Flint water samples in 2015!
📂 https://tidytues.day/2025/2025-11-04
📰 https://academic.oup.com/jrssig/article/14/2/16/7029247
#RStats #PyData #JuliaLang #DataViz #tidyverse #r4ds
Little late, but here's my plot for this week's #tidytuesday data about British literary prizes. Both shortlists and awardees are getting more diverse, but not in the same way... You can find my code here: github.com/josefinabern...
#rstats #dataviz #rladies #tidyverse #ggplot2
#rstats #dataviz #rladies #tidyverse #ggplot2
October 29, 2025 at 4:30 PM
Little late, but here's my plot for this week's #tidytuesday data about British literary prizes. Both shortlists and awardees are getting more diverse, but not in the same way... You can find my code here: github.com/josefinabern...
#rstats #dataviz #rladies #tidyverse #ggplot2
#rstats #dataviz #rladies #tidyverse #ggplot2
@emitanaka.org talks about key design principles from #tidyverse and how we can improve plant breeding software 😎
October 28, 2025 at 6:26 AM
@emitanaka.org talks about key design principles from #tidyverse and how we can improve plant breeding software 😎
It's #TidyTuesday y'all! Show us what you made on our Slack at https://dslc.io!
#RStats #PyData #JuliaLang #RustLang #DataViz #DataScience #DataAnalytics #data #tidyverse #DataBS
#RStats #PyData #JuliaLang #RustLang #DataViz #DataScience #DataAnalytics #data #tidyverse #DataBS
October 28, 2025 at 1:05 PM
It's #TidyTuesday y'all! Show us what you made on our Slack at https://dslc.io!
#RStats #PyData #JuliaLang #RustLang #DataViz #DataScience #DataAnalytics #data #tidyverse #DataBS
#RStats #PyData #JuliaLang #RustLang #DataViz #DataScience #DataAnalytics #data #tidyverse #DataBS
Mostly grew up in Pasadena, Texas. BA physics and math from Rice, MS in astrophysics U Colorado, 35 years as a geophysicist at Shell. Started my stats using SAS back in the 80's, worked with R shortly after it appeared, switched to Python, then back to R for the tidyverse.
October 26, 2025 at 9:39 PM
Mostly grew up in Pasadena, Texas. BA physics and math from Rice, MS in astrophysics U Colorado, 35 years as a geophysicist at Shell. Started my stats using SAS back in the 80's, worked with R shortly after it appeared, switched to Python, then back to R for the tidyverse.
Friday night early #TidyTuesday of British Literary Prizes.
Wanted it as a bookshelf, made it into a bookshelf 📚
Code: github.com/borstell/tid...
#R4DS #DataViz
Wanted it as a bookshelf, made it into a bookshelf 📚
Code: github.com/borstell/tid...
#R4DS #DataViz
October 24, 2025 at 10:28 PM
Friday night early #TidyTuesday of British Literary Prizes.
Wanted it as a bookshelf, made it into a bookshelf 📚
Code: github.com/borstell/tid...
#R4DS #DataViz
Wanted it as a bookshelf, made it into a bookshelf 📚
Code: github.com/borstell/tid...
#R4DS #DataViz
@hadley.nz in case you’re taking suggestions for new #tidyverse verbs, may I suggest ‘yoink()’?
i don’t yet know what it does. But whatever that action is, I’d for sure use it *all the time!*
#rstats
i don’t yet know what it does. But whatever that action is, I’d for sure use it *all the time!*
#rstats
October 22, 2025 at 4:54 PM
@hadley.nz in case you’re taking suggestions for new #tidyverse verbs, may I suggest ‘yoink()’?
i don’t yet know what it does. But whatever that action is, I’d for sure use it *all the time!*
#rstats
i don’t yet know what it does. But whatever that action is, I’d for sure use it *all the time!*
#rstats
You should read this wonderful little history of the #tidyverse, by @hadley.nz.
It reminded me about my early #rstats days as a PhD student (2011 - 2016), where I was constantly trying out the new things Hadley and crew were cooking up.
hadley.github.io/25-tidyverse...
It reminded me about my early #rstats days as a PhD student (2011 - 2016), where I was constantly trying out the new things Hadley and crew were cooking up.
hadley.github.io/25-tidyverse...
A personal history of the tidyverse
hadley.github.io
October 22, 2025 at 11:30 AM
You should read this wonderful little history of the #tidyverse, by @hadley.nz.
It reminded me about my early #rstats days as a PhD student (2011 - 2016), where I was constantly trying out the new things Hadley and crew were cooking up.
hadley.github.io/25-tidyverse...
It reminded me about my early #rstats days as a PhD student (2011 - 2016), where I was constantly trying out the new things Hadley and crew were cooking up.
hadley.github.io/25-tidyverse...
My first time joining #tidytuesday was a lot of fun! Here is the figure I have created showing different types of meteorological measurements across the UK. Thanks to the @metoffice.gov.uk for the data!
Code is available here: github.com/josefinabern...
#rladies #tidyverse #rstats
Code is available here: github.com/josefinabern...
#rladies #tidyverse #rstats
October 21, 2025 at 2:58 PM
My first time joining #tidytuesday was a lot of fun! Here is the figure I have created showing different types of meteorological measurements across the UK. Thanks to the @metoffice.gov.uk for the data!
Code is available here: github.com/josefinabern...
#rladies #tidyverse #rstats
Code is available here: github.com/josefinabern...
#rladies #tidyverse #rstats
UK weather data #TidyTuesday
Temperature changes over time and some individual temperature extremes highlighted on map
🌡🇬🇧
Code: github.com/borstell/tid...
#DataViz ##ggplot2
Temperature changes over time and some individual temperature extremes highlighted on map
🌡🇬🇧
Code: github.com/borstell/tid...
#DataViz ##ggplot2
October 20, 2025 at 7:30 AM
UK weather data #TidyTuesday
Temperature changes over time and some individual temperature extremes highlighted on map
🌡🇬🇧
Code: github.com/borstell/tid...
#DataViz ##ggplot2
Temperature changes over time and some individual temperature extremes highlighted on map
🌡🇬🇧
Code: github.com/borstell/tid...
#DataViz ##ggplot2
Traballar con datos de xeito limpo e eficiente coa libraría tidyverse @usc.gal @citmaga.bsky.social
October 16, 2025 at 5:55 PM
Traballar con datos de xeito limpo e eficiente coa libraría tidyverse @usc.gal @citmaga.bsky.social
While I DO think dplyr 'across' makes a lot more sense, I am FOREVER having to look up how to mutate a bunch of data into factors and I don't know why I can't get this in my thick skull #tidyverse #rstats
October 16, 2025 at 2:16 PM
While I DO think dplyr 'across' makes a lot more sense, I am FOREVER having to look up how to mutate a bunch of data into factors and I don't know why I can't get this in my thick skull #tidyverse #rstats
And tidyverse has actually made this *better*!
October 16, 2025 at 12:37 AM
And tidyverse has actually made this *better*!
I wrote a paper about "Examining the Interface Design of Tidyverse" 📝
TL;DR to follow in future 😊
arxiv.org/abs/2510.10382
TL;DR to follow in future 😊
arxiv.org/abs/2510.10382
Examining the Interface Design of Tidyverse
The tidyverse is a popular meta-package comprising several core R packages to aid in various data science tasks, including data import, manipulation and visualisation. Although functionalities offered...
arxiv.org
October 14, 2025 at 3:31 AM
I wrote a paper about "Examining the Interface Design of Tidyverse" 📝
TL;DR to follow in future 😊
arxiv.org/abs/2510.10382
TL;DR to follow in future 😊
arxiv.org/abs/2510.10382