ohai.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A cozy, fast and secure Mastodon server where everyone is welcome. Run by the folks at ohai.is.

Administered by:

Server stats:

1.8K
active users

#rstats

151 posts139 participants5 posts today

```
library(tidyverse)
library(interp)
x = c(runif(500), 0,0,1,1)
y = c(runif(500), 0,1,0,1)
triangles(tri.mesh(x = x,y = y)) |>
as_tibble() |>
mutate(i=1:n()) |>
rowwise() |>
mutate(tri = list(
tibble(x=x[c(node1,node2,node3,node1)],
y=y[c(node1,node2,node3,node1)]))) |>
unnest('tri') |>
ggplot() +
geom_polygon(aes(x=x,y=y,group=i,fill=i), show.legend=FALSE) +
scale_fill_viridis_c(option='F') +
theme_void()
```

📊 Exciting News! The 2025 Cascadia R Conference agenda and workshops are now LIVE!

Join us June 20-21 in Portland, Oregon

This regional conference brings together #rstats enthusiasts from across the Pacific Northwest

Register today: cascadiarconf.com

CascadiaRConfCascadiaRConfCascadia R Conference is an R conference serving the Pacific Northwest region (Alaska/British Columbia/Washington/Oregon/California).

@Posit is working on “a complete rewrite” of the {plumber} #RStats 📦 “to take everything we’ve learned from plumber, shed the bad decision that you inevitably make over the course of development, and start from scratch.”
They're looking for feedback during development:
posit-dev.github.io/plumber2/

posit-dev.github.ioEasy and Powerful Webservers in RAutomatically create a webserver from annotated R files or by building it up programmatically. Provides automatic OpenAPI documentation, input handling, async support, and middleware support.

📝 [Blog post] Supporting rOpenSci Mentors with Practical Tools by @yabellini

Mentoring is at the heart of what makes rOpenSci a community. We have developed a set of resources to support mentors in the Champions Program. In this post, we’ll walk you through what we’ve created and show how these resources can support your mentoring as well.

ropensci.org/blog/2025/04/08/m

ropensci.orgSupporting rOpenSci Mentors with Practical ToolsrOpenSci has developed a set of resources to support mentors in the Champions Program. In this post, we'll walk you through what we've created and show how these resources can support your mentoring as well —whether you're part of rOpenSci or mentoring in another context.