최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 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).