"매 ARPU 는 매 user base 전체 의 monetization 효율, 매 ARPPU 는 매 paying user 의 willingness-to-pay". 매 두 metric 의 ratio = conversion rate. 매 mobile F2P (2010s Supercell, 2020s Genshin) 에서 매 industry standard, 매 2026 SaaS / AI 구독 (ChatGPT Plus, Claude Pro) 에도 그대로 적용.
매 핵심
매 정의
ARPU = Total Revenue / Total Active Users (DAU 또는 MAU 기준).
importnumpyasnprevenue=df['user_revenue'].sort_values(ascending=False).valuestop_1pct=revenue[:int(len(revenue)*0.01)].sum()total=revenue.sum()print(f"Top 1% contribute: {top_1pct/total:.1%}")# 매 F2P 보통 50%+
언제: 매 product analytics agent 가 매 monetization dashboard 생성 / 매 anomaly detection. 매 LLM 이 매 SQL 작성 + 매 ratio interpretation.
언제 X: 매 raw event-level data exploration — 매 BI tool (Looker, Metabase) 직접.
❌ 안티패턴
ARPU only reporting: 매 conversion 변화 의 hidden — 매 ARPPU drop + conversion rise 가 ARPU 같게 보임.
Single-day snapshot: 매 day-of-week / weekend effect → 매 7-day rolling 필수.
Mixing currencies: 매 KRW/USD/EUR mixed → 매 normalize first.
Including refunds 의 X: 매 refund 차감 안 하면 매 inflated ARPPU.
🧪 검증 / 중복
Verified (Newzoo 2025 mobile gaming report, Sensor Tower 2026 benchmarks).