That feeling when you get the `ntfy` message that everything finished running on the remote machines, and ran successfully. 🎉

Thanks @jonocarroll for the #RStats package!

There are 16 new #rStats packages on CRAN:
- 12.50% are in English.
- 0.00% are in other languages than English.
- 0.00% use multiple languages.
- 87.50% do not declare any language.
I only realize today that the widely used #conda environment tools can only be used under #FreeBSD via the #Linux compact layer. For people not familiar with it, it is kind of like the #venv or #virtualenv tools, allowing multiple versions of #Python coexist. I used #conda, mainly #miniforge or #mambaforge because besides Python, conda also supports #R enrironments. I daily use R #ggplot2 figures generated from animal models and cellular experiments, as well as various #Bioinformatics tools. It is a shock to me conda does not natively support #BSD systems.

#RunBSD #Unix #Rstats
Saw nice charts and info earlier from what seemed to be low-bloat R code - refreshing. Dependency bloat is so pervasive in R going back well over a decade now, I am actually not sure if 'vibe coding' via LLM's will accelerate it or slow it down.
#RStats #Demography #PopMastodon

[phylotastic] TreeDist 2.13.0.9002

Implements measures of tree similarity, including information-based generalized Robinson-Foulds distances (Phylogenetic Information Distance, Clustering Information Distance, Matching Split Information Distance; Smith 2020) ; Jaccard-Robinson-Foulds distances (Bocker et al. 2013) , including the Nye et al. (2006) metric ; the Matching Split Distance (Bogdanowicz & Giaro 2012) ; the Hierarchical Mutual Information (Perotti et al. 2015) ; Maximum Agreement Subtree distances; the Kendall-Colijn (2016) distance , and the Nearest Neighbour Interchange (NNI) distance, approximated per Li et al. (1996) . Includes tools for visualizing mappings of tree space (Smith 2022) , for identifying islands of trees (Silva and Wilkinson 2021) , for calculating the median of sets of trees, and for computing the information content of trees and splits.

#rstats

TreeDist 2.13.0.9002 · r-universe/phylotastic@55ddc72

Source universe for: phylotastic. Contribute to r-universe/phylotastic development by creating an account on GitHub.

GitHub

[phylotastic] TreeDist 2.13.0.9002

Implements measures of tree similarity, including information-based generalized Robinson-Foulds distances (Phylogenetic Information Distance, Clustering Information Distance, Matching Split Information Distance; Smith 2020) ; Jaccard-Robinson-Foulds distances (Bocker et al. 2013) , including the Nye et al. (2006) metric ; the Matching Split Distance (Bogdanowicz & Giaro 2012) ; the Hierarchical Mutual Information (Perotti et al. 2015) ; Maximum Agreement Subtree distances; the Kendall-Colijn (2016) distance , and the Nearest Neighbour Interchange (NNI) distance, approximated per Li et al. (1996) . Includes tools for visualizing mappings of tree space (Smith 2022) , for identifying islands of trees (Silva and Wilkinson 2021) , for calculating the median of sets of trees, and for computing the information content of trees and splits.

#rstats

TreeDist 2.13.0.9002 · r-universe/phylotastic@55ddc72

Source universe for: phylotastic. Contribute to r-universe/phylotastic development by creating an account on GitHub.

GitHub

The R ecosystem grows through community. In 2026, R Consortium is supporting major R-related events around the world to help strengthen collaboration, accessibility, and long-term ecosystem growth across regions, domains, and user communities.

From flagship conferences to grassroots initiatives, this support helps expand participation and create more opportunities to learn, connect, and contribute to R.

Read more: https://r-consortium.org/posts/investing-in-the-r-community-our-support-for-global-r-events-in-2026/

#rstats #opensource #community

Tricksy upstream P3M "bug" that might be affecting performance in some of your `renv` and `rv` enabled projects on MacOS. #rstats forum.posit.co/t/missing-op...
Missing OpenMP support for P3M macOS binaries (affects data.table, fixest, and likely others)

Background Since R 4.3.0, CRAN has shipped an OpenMP runtime with its macOS distribution of R. This means that packages can support multithreading out of the box on Mac without users needing to configure ~/.R/Makevars and/or install from source (see OpenMP on macOS with Xcode tools). Several packages have already taken advantage of this by shipping configure scripts that detect the OpenMP runtime at build time and enable the appropriate compiler/linker flags. For example: data.table (PR #603...

Posit Community

Tricksy upstream P3M "bug" that might be affecting performance in some of your `renv` and `rv` enabled projects on MacOS. #rstats

https://forum.posit.co/t/missing-openmp-support-for-p3m-macos-binaries-affects-data-table-fixest-and-likely-others/211094

Missing OpenMP support for P3M macOS binaries (affects data.table, fixest, and likely others)

Background Since R 4.3.0, CRAN has shipped an OpenMP runtime with its macOS distribution of R. This means that packages can support multithreading out of the box on Mac without users needing to configure ~/.R/Makevars and/or install from source (see OpenMP on macOS with Xcode tools). Several packages have already taken advantage of this by shipping configure scripts that detect the OpenMP runtime at build time and enable the appropriate compiler/linker flags. For example: data.table (PR #603...

Posit Community

1/2 Case in point: I use {targets} iteratively when doing analyses in #RStats, but it can result in some annoying behaviors, like:

list(
tar_target(name = , command = {
read.csv("data.csv") <- run this command and...
}),
...
...
...
) | <- cursor ends up here, at bottom 😡