data-analysis — for Claude Code data-analysis, AdsBan, community, for Claude Code, ide skills, $ARGUMENTS, output, fst::write_fst(), qs2::qs_save(), ggthemes::theme_stata()

v1.0.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need data analysis workflow. Lokalisierte Zusammenfassung: # Data Analysis Workflow Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Funktionen

Data Analysis Workflow
Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output.
Follow R code conventions in .claude/rules/r-code-conventions.md
Save all scripts to code/ with descriptive names
Save all outputs (figures, tables, cached data) to output/

# Kernthemen

weim-mkt weim-mkt
[0]
[0]
Aktualisiert: 4/23/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Geeigneter Einsatz: Ideal for AI agents that need data analysis workflow. Lokalisierte Zusammenfassung: # Data Analysis Workflow Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Warum diese Fähigkeit verwenden

Empfehlung: data-analysis helps agents data analysis workflow. Data Analysis Workflow Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output. This AI agent skill supports

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need data analysis workflow.

Handlungsfähige Anwendungsfälle for data-analysis

Anwendungsfall: Applying Data Analysis Workflow
Anwendungsfall: Applying Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output
Anwendungsfall: Applying Follow R code conventions in .claude/rules/r-code-conventions.md

! Sicherheit & Einschränkungen

  • Einschraenkung: Requires repository-specific context from the skill documentation
  • Einschraenkung: Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ und Installationsschritte

These questions and steps mirror the structured data on this page for better search understanding.

? Häufige Fragen

Was ist data-analysis?

Geeigneter Einsatz: Ideal for AI agents that need data analysis workflow. Lokalisierte Zusammenfassung: # Data Analysis Workflow Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Wie installiere ich data-analysis?

Führen Sie den Befehl aus: npx killer-skills add weim-mkt/AdsBan. Er funktioniert mit Cursor, Windsurf, VS Code, Claude Code und mehr als 19 weiteren IDEs.

Wofür kann ich data-analysis verwenden?

Wichtige Einsatzbereiche sind: Anwendungsfall: Applying Data Analysis Workflow, Anwendungsfall: Applying Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output, Anwendungsfall: Applying Follow R code conventions in .claude/rules/r-code-conventions.md.

Welche IDEs sind mit data-analysis kompatibel?

Dieser Skill ist mit Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer kompatibel. Nutzen Sie die Killer-Skills CLI für eine einheitliche Installation.

Gibt es Einschränkungen bei data-analysis?

Einschraenkung: Requires repository-specific context from the skill documentation. Einschraenkung: Works best when the underlying tools and dependencies are already configured.

So installieren Sie den Skill

  1. 1. Terminal öffnen

    Öffnen Sie Ihr Terminal oder die Kommandozeile im Projektverzeichnis.

  2. 2. Installationsbefehl ausführen

    Führen Sie aus: npx killer-skills add weim-mkt/AdsBan. Die CLI erkennt Ihre IDE oder Ihren Agenten automatisch und richtet den Skill ein.

  3. 3. Skill verwenden

    Der Skill ist jetzt aktiv. Ihr KI-Agent kann data-analysis sofort im aktuellen Projekt verwenden.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

data-analysis

# Data Analysis Workflow Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output. This AI agent skill supports

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Data Analysis Workflow

Run an end-to-end data analysis in R: load, explore, analyze, and produce publication-ready output.

Input: $ARGUMENTS — a dataset path (e.g., data/county_panel.csv) or a description of the analysis goal (e.g., "regress wages on education with state fixed effects using CPS data").


Constraints

  • Follow R code conventions in .claude/rules/r-code-conventions.md
  • Save all scripts to code/ with descriptive names
  • Save all outputs (figures, tables, cached data) to output/
  • Cache data with fst::write_fst() for tabular, qs2::qs_save() for model objects
  • Use ggthemes::theme_stata() for all figures
  • Run r-reviewer on the generated script before presenting results

Workflow Phases

Phase 0: Pre-Flight Report

Before writing any analysis code, produce a Pre-Flight Report showing you read the inputs. This prevents the common failure mode where the agent hallucinates variable names or skips project conventions.

Output block (in your response to the user, before Phase 1):

markdown
1## Pre-Flight Report 2 3**Dataset:** [path] 4- Variables found: [list from head()/names()] 5- Rows: [count] 6- Key types: [e.g., "outcome=numeric, treatment=binary, state=factor"] 7- Missing-data summary: [% missing per key var] 8 9**Project conventions read:** 10- `.claude/rules/r-code-conventions.md` — [one-line summary of most relevant rule] 11- `.claude/rules/content-invariants.md` — [INV-9, INV-10, INV-11, INV-12 applicable] 12 13**Task interpretation:** [one sentence restating what the user asked for] 14 15**Plan:** [3-5 bullet outline of the R script structure]

If any input cannot be read (missing file, unreadable format), stop and ask the user before proceeding.

Phase 1: Setup and Data Loading

  1. Read .claude/rules/r-code-conventions.md for project standards
  2. Create R script with proper header (title, author, purpose, inputs, outputs)
  3. Load required packages at top via library() (renv + pak for install)
  4. Call set.seed(888) before each step involving randomness (per r-code-conventions.md)
  5. Load and inspect the dataset

Phase 2: Exploratory Data Analysis

Generate diagnostic outputs:

  • Summary statistics: summary(), missingness rates, variable types
  • Distributions: Histograms for key continuous variables
  • Relationships: Scatter plots, correlation matrices
  • Time patterns: If panel data, plot trends over time
  • Group comparisons: If treatment/control, compare pre-treatment means

Save all diagnostic figures to output/diagnostics/.

Phase 3: Main Analysis

Based on the research question:

  • Regression analysis: Use fixest for panel data, lm/glm for cross-section
  • Standard errors: Cluster at the appropriate level (document why)
  • Multiple specifications: Start simple, progressively add controls
  • Effect sizes: Report standardized effects alongside raw coefficients

Phase 4: Publication-Ready Output

Tables:

  • Use modelsummary for regression tables (preferred) or stargazer
  • Include all standard elements: coefficients, SEs, significance stars, N, R-squared
  • Export as .tex for LaTeX inclusion and .html for quick viewing

Figures:

  • Use ggplot2 with ggthemes::theme_stata()
  • Set bg = "transparent" for Beamer compatibility
  • Include proper axis labels (sentence case, units)
  • Export with explicit dimensions: ggsave(width = X, height = Y)
  • Save as both .pdf and .png

Phase 5: Save and Review

  1. fst::write_fst() for tabular data, qs2::qs_save() for model objects
  2. Create output/ subdirectories as needed with dir.create(..., recursive = TRUE)
  3. Run the r-reviewer agent on the generated script:
Delegate to the r-reviewer agent:
"Review the script at code/[script_name].R"
  1. Address any Critical or High issues from the review.

Script Structure

Follow this template:

r
1# ============================================================ 2# [Descriptive Title] 3# Author: [from project context] 4# Purpose: [What this script does] 5# Inputs: [Data files] 6# Outputs: [Figures, tables, cached data] 7# ============================================================ 8 9# 0. Setup ---- 10library(data.table) 11library(fixest) 12library(modelsummary) 13library(ggplot2) 14library(ggthemes) 15library(here) 16library(fst) 17library(qs2) 18 19dir.create(here("output", "analysis"), recursive = TRUE, showWarnings = FALSE) 20 21# 1. Data Loading ---- 22# dt <- fread(here("data", "raw", "dataset.csv"), encoding = "UTF-8") 23 24# 2. Exploratory Analysis ---- 25# [Summary stats, diagnostic plots] 26 27# 3. Main Analysis ---- 28set.seed(888) 29# [Regressions, estimation — seed before any randomness step] 30 31# 4. Tables and Figures ---- 32# [Publication-ready output with theme_stata()] 33 34# 5. Export ---- 35# fst::write_fst(dt_results, here("output", "analysis", "results.fst")) 36# qs2::qs_save(model_fit, here("output", "analysis", "model.qs2")) 37# ggsave(here("output", "analysis", "figure.pdf"), width = 12, height = 5, bg = "transparent")

Important

  • Reproduce, don't guess. If the user specifies a regression, run exactly that.
  • Show your work. Print summary statistics before jumping to regression.
  • Check for issues. Look for multicollinearity, outliers, perfect prediction.
  • Use relative paths. All paths relative to repository root.
  • Use here::here(). All paths via here() for cross-platform compatibility.
  • No hardcoded values. Use variables for sample restrictions, date ranges, etc.

Verwandte Fähigkeiten

Looking for an alternative to data-analysis or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler