2026-06-20 10:00:01
Primer to get you started with Optimization and Mathematical Programming in R #rstats
Primer to get you started with Optimization and Mathematical Programming in R #rstats
TidyX: screencasts explaining different aspects of the R language and the coding process. #rstats
{rsonar} combines lintr, styler, covr and goodpractice into an interactive code quality report for R projects, including technical debt and quality gates: #rstats
{purrr} has some lesser known functions that make handling of failing function calls easier: safely, quietly, possibly: #rstats
Interactive resizing of picture and table content in Rmd and Quarto: #rstats
Rapp turns ordinary R scripts into command-line tools and generates arguments and help from the structure of the script: #rstats
The {conflicted} package makes sure that namespace conflicts are solved explicitly and prevents unpleasent surprises: #rstats
{tabpfn} brings a pretrained deep-learning model for tabular data to R, with familiar formula, recipe and predict() interfaces: #rstats
Are you making slides with Quarto or R Markdown and need a timer e.g. for breaks or group work? There is the {countdown} package for you: #rstats
{duckplyr} is a drop-in replacement for dplyr powered by DuckDB. Keep the familiar dplyr syntax while speeding up work with large datasets: #rstats
I have a habbit of making (too) many (small) packages for functionality that might be reused in different context. {box} might be an alternative by making scripts into modlues that can be loaded: #RStats
#rstats mapgl is now on CRAN with flowmaps support! As previewed at #MobileTartu (Mobility Lab, University of Tartu) and Association of Geographic Information Laboratories in Europe (#AGILE) conferences! (Video by Kyle Walker). Backend is Flowmap.gl
GitHub Actions for the R language: Makes automatic testing of your R package much easier and making sure your package works on different OS and R versions is a matter of just a few lines of yaml: #rstats
Linear programs help to find optimal solutions based on a set of constrains. I used {ompr} before, but the new package {tidyLP} looks promising and integrates with the tidyverse. #rstats #linearprograms #optimization
Keynote from rstudio::conf 2022: The past and future of shiny. #rstats
There are many situations were you need access to different R versions: rig is a way to manage them #rstats
The fastverse is a suite of complementary high-performance packages for statistical computing and data manipulation in R. #rstats
Not sure any longer which libraries your script actually needs? #rstats
Customize what happens when you start R: #rstats #environment
{slider} helps with aggregation over (sliding) windows, both index and time period based: #rstats
A pictures says more than 1000 words. How much more can an audio representation of your data tell you? #rstats
{ggtintshade} adds a tint/shade aesthetic to ggplot2 in addition to hue. This makes it possible to show groups and subgroups using related colours, and works for both nested and crossed designs: https://github.com/wkumler/ggtintshade
The {esquisse} package makes it easy to plot your data in different ways with a drag and drop interface: #rstats
A curated list of awesome tools to assist 📦 development in R programming language. #rstats #📦
The functions in the {withr} package allow to change your environment temporarily. E.g. create a temp file for a {testthat} test and clean it up afterwards. #rstats
Make sure your code follows a consitent style using the {lintr} package. #rstats
Do you (sometimes) use print() or message() for debugging your code? Next time you can use {icecream} instead: #rstats
Its good to have many tests in your R package, but it can be a pain to debug some failing tests when it happens. {lazytest} for the rescue: only rerun the failing tests, until they pass: #RStats
Use multi level models with {parsnip}: http://multilevelmod.tidymodels.org/ #rstats #ML
{constructive} prints code that can be used to recreate R objects. Like dput, but better... #rstats
The inner working of parquette/arrow data in R: #rstats
Function-oriented Make-like declarative workflows for R #rstats
{dtrack} makes documentation of data wrangling part of the analysis and creates pretty flow charts: #rstats
R doesnt need to be a hard and scientific tool 📈. You can use it to make art 🎨: #rstats
Beside the {report} package (yesterdays note) there are more tools in the easystats collection. #rstats
Add highlighting to your quarto presentation using the RoughNotation library: #rstats
Are you interested in how dependency-heavy your (or another) package is and why? #rstats
Automatically describe data and models as text using the {report} package. #rstats
Using fonts in R graphics can be tricky at times. {showtext} aims to make it easier: #rstats
Lets be honest, we spend too much time cleaning data. {janitor} can help with that: #rstats #datasciece
Polars is a lightning fast DataFrame library/in-memory query engine with parallel execution and cache efficiency. And now you can use is with the tidyverse syntax: #rstats
Cute comics of R functions by @…: https://allisonhorst.com/r-packages-functions
{piggyback} makes it easier to attach large files (e.g. input data) to code in github repos: #rstats
Add some swag to your ggplots, with fontawesome symbols and colors: #rstats
If you use Quarto to make presentations for a professional setting, it is important to choose the right theme, e.g. #rstats
A template for data analysis projects structured as R packages (or not) https://github.com/Pakillo/template by @…
There are frameworks like {golem} and {rhino} to make shiny development more robust, but I like the concept of {shinytest2} in providing a testing framework for pure shiny. https://rstudio.github.io/shinytest2/index.html
Friends Don't Let Friends Make Bad Graphs! Do you agree with the examples of bad graphs and the alternatives Chenxin Li (@chenxinli2.bsky.social) lists at #RStats
Easier debugging of piped analyses in R: https://github.com/MilesMcBain/breakerofchains by @…
Sometimes you get data in less than optimal format, e.g. as a png of a figure 😭... In that case https://cran.r-project.org/web/packages/metaDigitise/vignettes/metaDigitise.html might be the rescue.
Find the best contrast between one color and a list of options, e.g. for labels in geom_tile: {prismatic::best_contrast()} https://emilhvitfeldt.github.io/prismatic/reference/best_contrast.html
If you set limits for a scale (e.g. x-axis) in ggplot, how would you like data outside of that range be handled? There is the oob parameter for that and a set of functions to use with it: https://scales.r-lib.org/reference/oob.html
Do you need better performance than what the standard #tidyverse functions have? {collapse} might be worth a look: https://sebkrantz.github.io/collapse/