broom

broom is a skill for Claude Code, Codex from LeoLin990405/r-analytics-skill. It costs 23 tokens per session (936 once invoked), scanned A, original, MIT.

An R package that turns results from statistical models and tests into ordinary data frames, making them easier to inspect or use in reports.

In plain words
What is it for?
Use it to extract coefficients and p-values, summarize model fit, add fitted values and residuals to observations, and tidy results from tests, regression, ANOVA, and survival models.
Why use it?
Statistical results often come back in different object formats. This gives model coefficients, overall model details, and per-observation results a consistent table-like shape.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to extract coefficients and p-values, summarize model fit, add fitted values and residuals to observations, and tidy results from tests, regression, ANOVA, and survival models.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leolin990405/r-analytics-skill/broom
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LeoLin990405/r-analytics-skill --skill broom
Clone the repo
git clone --depth 1 https://github.com/LeoLin990405/r-analytics-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for broom

README.md
[![agentmods](https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/broom.svg)](https://agentmods.dev/skills/leolin990405/r-analytics-skill/broom)
Your own site
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/broom"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/broom.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 936 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.00936
Opus 5 $0.00012 $0.00468
Sonnet 5 $0.00005 $0.00187
Haiku 4.5 $0.00002 $0.00094

Measured 7d ago against content hash b88188a93124, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

broom scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

sub-skills/r-data/r-data-manipulation/broom/SKILL.md · 171 lines

How it starts

The opening of the file, as written. The whole thing — 171 lines — stays where its author put it; the contents beside it link to each section on GitHub.

broom

Convert statistical objects into tidy data frames.

Core Functions

library(broom)

# Fit a model
model <- lm(mpg ~ wt + hp, data = mtcars)

# tidy() - coefficient-level statistics
tidy(model)
# Returns: term, estimate, std.error, statistic, p.value

# glance() - model-level statistics
glance(model)
# Returns: r.squared, adj.r.squared, sigma, statistic, p.value, df, etc.

# augment() - observation-level statistics
augment(model)
# Returns: original data + .fitted, .resid, .hat, .sigma, .cooksd, .std.resid

Linear Models

# lm
model <- lm(y ~ x1 + x2, data = df)
tidy(model, conf.int = TRUE, conf.level = 0.95)

# glm
model <- glm(y ~ x, data = df, family = binomial)
tidy(model, exponentiate = TRUE)  # Odds ratios

# Robust standard errors
library(sandwich)
tidy(model, vcov = vcovHC)

Statistical Tests

# t-test
t_result <- t.test(x, y)
tidy(t_result)

# Correlation
cor_result <- cor.test(x, y)
tidy(cor_result)

# Chi-squared
chisq_result <- chisq.test(table(x, y))
tidy(chisq_result)

# ANOVA
aov_result <- aov(y ~ group, data = df)
tidy(aov_result)

Survival Analysis

library(survival)

# Cox model
cox_model <- coxph(Surv(time, status) ~ age + sex, data = df)
tidy(cox_model, exponentiate = TRUE)  # Hazard ratios
glance(cox_model)

# Kaplan-Meier
km_fit <- survfit(Surv(time, status) ~ group, data = df)
tidy(km_fit)

Machine Learning Models

# Random forest (ranger)
library(ranger)
rf_model <- ranger(y ~ ., data = df, importance = "impurity")
tidy(rf_model)  # Variable importance

# kmeans
km <- kmeans(df, centers = 3)
tidy(km)      # Cluster centers
glance(km)    # Clustering metrics
augment(km, df)  # Cluster assignments

Multiple Models

library(dplyr)
library(purrr)

# Fit models by group
models <- df %>%
  group_by(category) %>%
  nest() %>%
  mutate(
    model = map(data, ~ lm(y ~ x, data = .x)),
    tidied = map(model, tidy),
    glanced = map(model, glance)
  )

# Extract results
models %>%
  unnest(tidied)

models %>%
  unnest(glanced)

Read the full file on GitHub · 171 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 171 lines · 23 tokens per session scan A b88188a93124

Subscribe to this mod's changes

broom is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 23 tokens to every session and 936 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

model-registry-refresh

Re-verify and extend catalog/model-registry.json — the fail-closed model-name and reasoning-effort matrix scripts/model-policy.mjs validates against — via delegated Context7-backed research, orchestrator-owned registry edits, and the full validation chain; use when a policy check fails on an unregistered model, a…

VincentChuWaiChow/vanguard-frontier-agentic · 79 tokens

databricks-ai-bi-genie

Use this skill to statically review AI/BI Genie agent and dashboard design: agent scoping (30-table limit), instructions and trusted assets, metric-view correctness, dashboard limits and rendering, benchmark design and honest accuracy reading, and the critical 'Individual data' versus 'Share data' permission decision.…

VincentChuWaiChow/vanguard-frontier-agentic · 112 tokens

databricks-data-quality-observability

Use this skill to design and verify data quality expectations, table constraints, Lakehouse Monitoring, freshness detection, event-log interrogation, quality SLAs, and downstream quality signaling for Lakeflow pipelines. Reads pipeline source, table schema, expectations, monitor configuration, and event-log queries…

VincentChuWaiChow/vanguard-frontier-agentic · 76 tokens

databricks-genai-agent-engineering

Use this skill to review generative-AI agent design on Databricks: Mosaic AI Agent Framework and ResponsesAgent interface, Databricks AI Search index variant and sync-mode choice, retrieval and context engineering, MCP server category and trust boundaries, external model-provider selection, and Unity AI Gateway…

VincentChuWaiChow/vanguard-frontier-agentic · 86 tokens

databricks-genai-evaluation-observability

Use this skill to review generative-AI evaluation, tracing, and observability design on Databricks: MLflow Tracing instrumentation and span design, trace storage and governance, mlflow.genai.evaluate() harness design, the judge-versus-scorer distinction, built-in judge selection (ten single-turn and seven multi-turn)…

VincentChuWaiChow/vanguard-frontier-agentic · 113 tokens

databricks-lakeflow-pipeline-engineering

Use this skill to design Lakeflow Spark Declarative Pipelines: medallion layering, Lakeflow Jobs orchestration and task dependencies, Delta table layout (liquid clustering, deletion vectors, Predictive Optimization), Auto Loader ingestion, schema evolution and rescueddata, materialized views versus streaming tables…

VincentChuWaiChow/vanguard-frontier-agentic · 102 tokens