e1071

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

An R package containing support vector machines (SVMs), naive Bayes models, and clustering tools. SVMs can classify categories or predict numeric values using several kernel functions.

In plain words
What is it for?
Use it to train classification and regression SVMs, choose linear, radial, polynomial, or sigmoid kernels, make predictions, and run clustering.
Why use it?
It gives R users several established statistical and machine-learning methods without needing separate packages for each one.

Skill for Claude CodeCodex

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

Good fit Use it to train classification and regression SVMs, choose linear, radial, polynomial, or sigmoid kernels, make predictions, and run clustering.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leolin990405/r-analytics-skill/e1071
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 e1071
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 e1071

README.md
[![agentmods](https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/e1071/github.svg)](https://agentmods.dev/skills/leolin990405/r-analytics-skill/e1071)
Your own site
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/e1071"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/e1071/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for e1071

Your own site · 80×15
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/e1071"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/e1071.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 922 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.00029 $0.00922
Opus 5 $0.00015 $0.00461
Sonnet 5 $0.00006 $0.00184
Haiku 4.5 $0.00003 $0.00092

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

Security

Grade A, and why

e1071 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 9d 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-ml/r-ml-frameworks/e1071/SKILL.md · 174 lines

How it starts

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

e1071

Support vector machines and misc statistical functions.

Support Vector Machines

library(e1071)

# Classification
svm_model <- svm(Species ~ ., data = iris)

# Regression
svm_model <- svm(mpg ~ ., data = mtcars)

# Predict
pred <- predict(svm_model, newdata = test_df)

SVM Parameters

svm_model <- svm(
  target ~ .,
  data = train_df,
  type = "C-classification",  # C-classification, nu-classification, eps-regression, nu-regression
  kernel = "radial",          # linear, polynomial, radial, sigmoid
  cost = 1,                   # Cost of constraints violation
  gamma = 1/ncol(df),         # Kernel parameter
  epsilon = 0.1,              # Epsilon for regression
  degree = 3,                 # Polynomial degree
  coef0 = 0,                  # Kernel coefficient
  scale = TRUE,               # Scale features
  probability = TRUE          # Enable probability estimates
)

Kernel Types

# Linear kernel
svm(target ~ ., data = df, kernel = "linear")

# Radial basis function (RBF)
svm(target ~ ., data = df, kernel = "radial", gamma = 0.1)

# Polynomial
svm(target ~ ., data = df, kernel = "polynomial", degree = 3)

# Sigmoid
svm(target ~ ., data = df, kernel = "sigmoid")

Probability Predictions

# Enable probabilities
svm_model <- svm(target ~ ., data = df, probability = TRUE)

# Get probabilities
pred <- predict(svm_model, newdata = test_df, probability = TRUE)
probs <- attr(pred, "probabilities")

Tuning

# Grid search
tune_result <- tune(
  svm,
  target ~ .,
  data = train_df,
  ranges = list(
    cost = c(0.1, 1, 10, 100),
    gamma = c(0.01, 0.1, 1)
  ),
  tunecontrol = tune.control(sampling = "cross", cross = 5)
)

# Best model
best_model <- tune_result$best.model

# Best parameters
tune_result$best.parameters

# Performance summary
summary(tune_result)
plot(tune_result)

Naive Bayes

# Train
nb_model <- naiveBayes(Species ~ ., data = iris)

# Predict
pred <- predict(nb_model, newdata = test_df)
pred_prob <- predict(nb_model, newdata = test_df, type = "raw")

# With Laplace smoothing
nb_model <- naiveBayes(target ~ ., data = df, laplace = 1)

Read the full file on GitHub · 174 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. 9d ago First seen · 174 lines · 29 tokens per session scan A e7927ae23a08

Subscribe to this mod's changes

e1071 is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 6mo ago), licensed MIT. It adds 29 tokens to every session and 922 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-09-03.

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