data-analysis
End-to-end R data analysis for the sewage project. Writes analysis scripts following project conventions (here::here, arrow/parquet, fixest, modelsu…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Data Analysis
Run an end-to-end data analysis following sewage project conventions.
Input: $ARGUMENTS — a dataset path, analysis goal description, or specification to estimate.
Project-Specific Context
Analysis Organisation
Scripts in scripts/R/09_analysis/ by approach:
01_descriptive/— Maps, scatter plots, Google Trends02_hedonic/— Cross-sectional hedonic regressions03_repeat_sales/— Repeat-transaction regressions04_long_difference/— 250m grid-level long differences05_news/— DiD and event studies with media coverage06_upstream_downstream/— Directional spillover07_dry_spills/— Dry spill analysis
Datasets
data/final/— Analysis-ready datasetsdata/processed/— Intermediate pipeline outputs (parquet)- All data loaded via
arrow::read_parquet()orarrow::open_dataset()
Output Destinations
- Tables:
output/tables/*.tex(modelsummary → LaTeX with tabularray) - Figures:
output/figures/.pdfor.png - Regression objects:
output/regs/*.rds - HTML interactive:
output/html_plots/
Required R Conventions
here::here()for all paths- Native pipe
|> fixest::feols()for regressions withvcov = "hetero"modelsummaryfor table output (tabularray format,[H]placement)arrowfor parquet I/Osnake_casenamingforcats::as_factor()for factors
Workflow
Step 1: Context Gathering
- Understand the analysis goal from
$ARGUMENTS - Read existing analysis scripts in the relevant subdirectory for patterns
- Read
scripts/R/utils/spill_aggregation_utils.Rif spill metrics are involved - Check
data/final/for available datasets - Read the relevant manuscript section in
docs/overleaf/if the analysis feeds into the paper
Step 2: Write Analysis Script
Follow the analysis script structure:
# ================================================================
# [Descriptive Title]
# Purpose: [What this script does]
# Inputs: [Data files]
# Outputs: [Figures, tables, RDS files]
# ================================================================
# === 1. Setup ============================================
library(tidyverse)
library(fixest)
library(modelsummary)
library(arrow)
library(here)
# === 2. Data Loading =====================================
df <- read_parquet(here("data", "final", "dataset.parquet"))
# === 3. Main Analysis ====================================
model <- feols(
log_price ~ spill_count | lsoa + year_quarter,
data = df,
vcov = "hetero"
)
# === 4. Tables and Figures ================================
modelsummary(
list("Main" = model),
output = here("output", "tables", "table_name.tex"),
fmt = 3
)
# === 5. Export ============================================
saveRDS(model, here("output", "regs", "model_name.rds"))
Step 3: Code Review
After writing the script, review it against the 9 categories from /review-r:
- Script structure, console hygiene, reproducibility
- Function design, figure quality, data persistence
- Comments, error handling, polish
Fix any Critical or Major issues before presenting.
Step 4: Run the Script
If the user wants execution:
cd /Users/jacopoolivieri/Library/CloudStorage/Dropbox/01_projects/sewage
Rscript scripts/R/09_analysis/[subdir]/[script_name].R
Step 5: Present Results
- Results summary — Key estimates with SEs and economic interpretation
- Script created — Path and description
- Output files — Tables and figures generated
- Code review notes — Any conventions to flag
- TODO items — Missing data, additional specifications needed
Principles
- Reproduce, don't guess. If a specific regression is requested, implement exactly that.
- Strategy alignment. If an analysis feeds into a manuscript section, the code must implement what the paper claims.
- Publication-ready output. Tables and figures should be directly includable in the paper.
- Follow existing patterns. Read neighbouring scripts in the same subdirectory for style consistency.
- Save everything. Every regression object saved as RDS, every table as LaTeX, every figure as PDF.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
skills/41-sticerd-eee-sewage-econometrics-check/skills/data-analysis/SKILL.md同一个仓库里的其他技能
- Full-empirical-analysis-skill
- Full-empirical-analysis-skill-R
- Full-empirical-analysis-skill-Stata
- auto-empirical-research-skills
- StatsPAI_skill
- Full-empirical-analysis-skill
- Full-empirical-analysis-skill-Stata
- Full-empirical-analysis-skill-R
- academic-paper-composer
- academic-paper-strategist
- medical-imaging-review
- paper-slide-deck
同名技能的其他版本
有 5 个不同仓库或目录里都有叫 data-analysis 的技能。它们内容并不相同,别混用:
- brycewang-stanford/Auto-Empirical-Research-Skills — End-to-end R data analysis workflow from exploration through regression to publication-rea
- brycewang-stanford/Auto-Empirical-Research-Skills — End-to-end R data analysis workflow from exploration through regression to publication-rea
- brycewang-stanford/Auto-Empirical-Research-Skills — >-
- brycewang-stanford/Auto-Empirical-Research-Skills — End-to-end R data analysis workflow from exploration through regression to publication-rea