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

# 統計・ダッシュボード

> 自動化率、取引統計、Judgment Engineのパフォーマンスを確認するコマンド。

# lim stats

会計処理の統計情報とJudgment Engineのパフォーマンスを確認します。

## ダッシュボード

```bash theme={null}
lim dashboard show
```

```
lim Dashboard — 株式会社サンプル
════════════════════════════════════════════════

  Cash Position      ¥2,550,000
  Monthly Burn       ¥360,000
  Runway             7.1 months

  This Month
  ──────────────────────────────
  Transactions       142
  Auto-posted        135 (95.1%)
  Pending review       4
  Revenue          ¥1,200,000
  Expenses           ¥580,000

  Judgment Engine
  ──────────────────────────────
  Rule match           95.1%
  History match         3.2%
  AI inference          1.0%
  Escalated             0.7%
  AI cost this month   ¥12
```

### サブコマンド

| コマンド                     | 説明                    |
| ------------------------ | --------------------- |
| `lim dashboard show`     | ダッシュボード概要             |
| `lim dashboard flywheel` | 学習フライホイール統計（手動 vs 自動） |
| `lim dashboard runway`   | 資金繰り予測（キャッシュランウェイ）    |
| `lim dashboard pnl`      | 当月の損益概要               |

## 自動化率の推移

```bash theme={null}
lim stats automation --months 6
```

```
Automation Rate (past 6 months)
────────────────────────────────────────
2025-10   ████████░░   82%
2025-11   █████████░   88%
2025-12   █████████░   91%
2026-01   █████████▌   93%
2026-02   █████████▌   94%
2026-03   ██████████   95%
```

<Tip>
  自動化率はルールマッチと履歴マッチで処理された取引の割合です。人間の確認が不要だった取引が該当します。目標は95%以上です。
</Tip>

## ルール統計

```bash theme={null}
lim stats rules
```

```
Rule Statistics
────────────────────────────────────────
Total rules:         87
Auto-post rules:     62 (71.3%)
Suggestion rules:    25 (28.7%)
Most used:           "AWS → 通信費" (24 matches)
Last created:        2026-03-14 "Figma → SaaS費用"
```

## AIコスト

```bash theme={null}
lim stats ai-cost --months 3
```

```
AI Cost (past 3 months)
────────────────────────────────────────
2026-01   ¥45   (12 inferences)
2026-02   ¥28   (8 inferences)
2026-03   ¥12   (3 inferences)
```

## 勘定科目別の取引数

```bash theme={null}
lim stats by-account --top 10
```

```
Top 10 Accounts by Transaction Count
────────────────────────────────────────
7100  通信費         24
7200  地代家賃       12
6100  給料手当       12
4100  売上高         10
7300  旅費交通費      8
```

## エクスポート

```bash theme={null}
# JSON出力
lim stats --format json

# 特定期間
lim stats --from 2026-01-01 --to 2026-03-31
```

## 次のステップ

<CardGroup cols={2}>
  <Card title="Judgment Engine" icon="brain" href="/ja/agents/judgment-engine">
    自動化率を上げるための詳細設定。
  </Card>

  <Card title="財務レポート" icon="chart-line" href="/ja/cli/reports">
    詳細な財務レポートを生成。
  </Card>
</CardGroup>
