Agent skill

time-series-guide

Apply ARIMA, VAR, cointegration, and time series econometric methods

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill time-series-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/analysis/econometrics/time-series-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Time Series Guide A skill for applying time series econometric methods including ARIMA modeling, VAR systems, cointegration analysis, and unit root tests. Covers stationarity concepts, model selection, forecasting, and diagnostic checking for economic and financial data. ## Stationarity and Unit Root Tests ### Why Stationarity Matters A time series is stationary when its statistical properties (mean, variance, autocorrelation) do not change over time. Most econometric methods require stationarity. Non-stationary series can produce spurious regressions. ### Testing for Stationarity ```python from statsmodels.tsa.stattools import adfuller, kpss import pandas as pd def test_stationarity(series: pd.Series, name: str = "Series") -> dict: """ Test for stationarity using ADF and KPSS tests. Args: series: Time series data name: Label for the series """ # Augmented Dickey-Fuller test # H0: Unit root exists (non-stationary) adf_result = adfuller(series.dropna(), autolag="AIC") # KPSS test # H0: Series is stationary kpss_result = kpss(series.dropna(), regression="c", nlags="auto") return { "series": name, "adf": { "statistic": adf_result[0], "p_value": adf_result[1], "lags_used": adf_result

What's inside
Steps it walks through
  1. Stationarity and Unit Root Tests
  2. Why Stationarity Matters
  3. Testing for Stationarity
  4. Making a Series Stationary
  5. ARIMA Modeling
  6. Model Structure
  7. Model Selection and Fitting
  8. Vector Autoregression (VAR)
  9. Multivariate Time Series
  10. Granger Causality
  11. Cointegration Analysis
  12. Engle-Granger and Johansen Tests
  13. Diagnostic Checking
  14. Model Validation Checklist
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the time-series-guide skill do?

Apply ARIMA, VAR, cointegration, and time series econometric methods

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill time-series-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going