r-style-guide

Installation
SKILL.md

R Style Guide & Function Writing Best Practices

Consistent naming, spacing, structure, and function design for R code

Function Writing Best Practices

Structure and Style

# Good function structure
rescale01 <- function(x) {
  rng <- range(x, na.rm = TRUE, finite = TRUE)
  (x - rng[1]) / (rng[2] - rng[1])
}
Installs
79
GitHub Stars
199
First Seen
Mar 4, 2026
r-style-guide — ab604/claude-code-r-skills