agentsclimarketplace

Python panel data

Skill brycewang-stanford/Auto-Empirical-Research-Skills/skills/31-thalysandratos-claude-code-skills/_skills/analysis/python-panel-data

🔬 A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | 精选 23,000+ AI Agent 技能库,覆盖8大社会科学学科的实证研究。CoPaper.AI 20分钟完成一篇可复现的规范实证论文,并支持用户上传 Skills。-- Maintained by CoPaper.AI from Stanford REAP.

Install
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill python-panel-data

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Panel data analysis with Python using linearmodels and pandas.

SKILL.md

3.1 KB, as published. Nobody here has run it

Python Panel Data

Purpose

This skill helps economists run panel data models in Python using pandas, statsmodels, and linearmodels, with correct fixed effects, clustering, and diagnostics.

When to Use

  • Estimating fixed effects or random effects models
  • Running difference-in-differences on panel data
  • Creating regression tables and plots in Python

Instructions

Follow these steps to complete the task:

Step 1: Understand the Context

Before generating any code, ask the user:

  • What is the unit of observation and panel identifiers?
  • Which outcomes and regressors are required?
  • What fixed effects or time effects are needed?
  • How should standard errors be clustered?

Step 2: Generate the Output

Based on the context, generate Python code that:

  1. Loads and cleans the data with pandas
  2. Sets a MultiIndex for panel structure
  3. Fits the model using linearmodels.PanelOLS or RandomEffects
  4. Outputs results in a readable table and optional LaTeX

Step 3: Verify and Explain

After generating output:

  • Interpret key coefficients
  • Note assumptions (strict exogeneity, parallel trends, etc.)
  • Suggest robustness checks (alternative clustering, placebo tests)

Example Prompts

  • "Run a two-way fixed effects model with firm and year effects"
  • "Estimate a DiD using state and year fixed effects"
  • "Export panel regression results to LaTeX"

Example Output

# ============================================
# Panel Data Analysis in Python
# ============================================
import pandas as pd
from linearmodels.panel import PanelOLS

# Load data
df = pd.read_csv("panel_data.csv")

# Set panel index
df = df.set_index(["firm_id", "year"])

# Create treatment indicator
df["treat_post"] = df["treated"] * df["post"]

# Two-way fixed effects model
model = PanelOLS.from_formula(
    "outcome ~ 1 + treat_post + EntityEffects + TimeEffects",
    data=df
)
results = model.fit(cov_type="clustered", cluster_entity=True)

print(results.summary)

Requirements

Software

  • Python 3.10+

Packages

  • pandas
  • linearmodels
  • statsmodels

Install with:

pip install pandas linearmodels statsmodels

Best Practices

  1. Always verify panel identifiers and balanced vs unbalanced panels
  2. Cluster standard errors at the appropriate level
  3. Check for missing data before estimation

Common Pitfalls

  • Failing to set a proper panel index
  • Using pooled OLS when fixed effects are required
  • Misinterpreting coefficients without accounting for fixed effects

References

Changelog

v1.0.0

  • Initial release

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.