> ## Documentation Index
> Fetch the complete documentation index at: https://docs.esperr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Results & Analytics

> Commands for viewing aggregated policy performance metrics and exporting analytics data.

## Policy performance

View aggregated policy performance metrics.

```bash theme={null}
# All policies
esper results policies

# Specific policy with time range
esper results policy <policy-id> --from 2024-01-01 --to 2024-01-31
```

## Export results

Export results for external analysis.

```bash theme={null}
esper results export --format csv --output results.csv
esper results export --format json | jq '.policies[] | select(.match_rate > 0.1)'
```

## Output formats

Control output format for automation.

```bash theme={null}
# JSON for programmatic access
esper --output json policy list

# Table for human reading (default)
esper --output table policy list

# YAML for configuration management
esper --output yaml policy show <policy-id>
```
