# Stata Results

> Fetch and display stored r(), e(), and s() results from the last Stata command.

- Skill: `brycewang-stanford/stata-results` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds add brycewang-stanford/stata-results`
- Raw SKILL.md: https://api.skillmd.com/api/skills/brycewang-stanford/stata-results/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: brycewang-stanford (https://skillmd.com/u/brycewang-stanford)
- Updated: 2026-08-19
- Page: https://skillmd.com/skills/brycewang-stanford/stata-results

---


Call `stata_get_results(include_matrices=True, as_json=True)`.

Present the results in a structured format:
- **r() scalars**: name → value pairs (e.g., r(N), r(mean), r(sd))
- **e() scalars**: model-level results (e.g., e(N), e(r2), e(F))
- **e() matrices**: if present, display b (coefficients) and V (variance-covariance) as formatted tables
- **s() macros**: string results if any

If no results are stored (empty response), tell the user to run a Stata command first (e.g., `regress`, `summarize`, `ttest`).

If the user needs Mata state, note they can ask you to call `stata_get_results(include_mata=True)`.

