livellosegreto.it is one of the many independent Mastodon servers you can use to participate in the fediverse.
Livello Segreto è il social etico che ha rispetto di te e del tuo tempo.

Administered by:

Server stats:

1.2K
active users

#rstats

124 posts106 participants13 posts today

I’d like to share that my book, Multilevel Thinking: Discovering Variation, Universals, and Particulars in Cross-Cultural Research is available for pre-order at Oxford University Press: global.oup.com/academic/produc

* This book explains multilevel modeling building upon my 15 years of teaching this topic.
* The book contains appendices for estimating multilevel models in #Stata, #Rstats, and #Julialang.

🌟 R Dev Day @ useR! 2025: Collaborate, Contribute, Code 🌟
📅 Monday, August 11, 2025
📍 Bostock Library, Duke University, NC, USA
⏰ 2:00 PM - 10:00 PM

Join R enthusiasts for a 1-day event to work on R core development!

Open to useR! 2025 attendees and others. Apply by April 15, 2025 (midnight anywhere on earth).

Participants will be selected to balance experience levels.

👉 Apply here: user2025.r-project.org/additio

user2025.r-project.orgR Dev Day – useR! 2025

Mapping -diff(y) to linewidth = "light on the upstroke, heavy on the downstroke" = calligraphy

```
library(tidyverse)
library(pracma)
tibble(s = seq(pi, -pi, len = 5000),
x = fresnelS(s), y = fresnelC(s),
wd = c(0, -diff(y))) |>
ggplot() +
geom_path(aes(x=x,y=y, lwd=wd), show.legend=FALSE) +
scale_linewidth_continuous(range=c(.1,2.5)) +
theme_void()
```