분석 목적: 사용자 행동 흐름(User Flow)을 Welcome → Home → Explore → Restaurant → Food Detail → Cart → Payment 구조로 단순화하여, 탐색 단계(Search / Category / Nearby / Recommendation)를 하나의 Explore 단계로 통합한 퍼널 기준으로 월별 Engagement 변화와 전환 흐름을 진단한다.
<aside> 👉
<aside> 💡
기존 탐색 이벤트(Search / Category / Nearby / Recommendation)를 Explore 단계로 통합하여 퍼널을 단순화하였다.
<aside> 👉
Welcome → Home → Explore → Restaurant → Food Detail → Cart → Payment
</aside>
<aside> 👉
screen_view_search
screen_view_food_category
click_restaurant_nearby_home
click_recommend_food_home
</aside>
</aside>
<aside> 👉
탐색 행동 이벤트들을 하나의 Explore 단계로 묶어 **월별 평균 탐색 활동 규모(avg_explore_count)**를 계산하였다.
-- 탐색 이벤트들을 avg_explore_count로 묶어서 가져오기
select month, avg_welcome_count, avg_home_count,
round(avg_search_count+ avg_food_cat_count+ avg_nearby_count+ avg_rec_food_count,1)as avg_explore_count,
avg_restaurant_count, avg_food_detail_count, avg_cart_count, avg_click_payment_cart
from (
SELECT
FORMAT_DATE('%Y-%m', event_date)ASmonth,
round(AVG(welcome_count),1)AS avg_welcome_count,
round(AVG(home_count),1)AS avg_home_count,
round(AVG(search_count),1)AS avg_search_count,
round(AVG(food_category_count),1)AS avg_food_cat_count,
round(AVG(nearby_count),1)AS avg_nearby_count,
round(AVG(rec_food_count),1)AS avg_rec_food_count,
round(AVG(restaurant_count),1)AS avg_restaurant_count,
round(AVG(food_detail_count),1)AS avg_food_detail_count,
round(AVG(cart_count),1)AS avg_cart_count,
round(AVG(click_payment_cart),1)AS avg_click_payment_cart
FROM `inflearn-bigquery-489104.advanced.imp_event_count_by_user`
GROUP BY month
ORDER BY month);
</aside>
| 지표 | 정의 | 중요한 이유 | 계산 방법 |
|---|---|---|---|
| 퍼널의 한 단계에서 다음 단계로 이동한 비율 | 어떤 UI 단계에서 사용자가 실제로 다음 행동으로 이어지는지 파악 가능 | 다음 단계 이벤트 ÷ 이전 단계 이벤트 | |
| 단계별 이탈률 (Drop-off Rate) | 특정 단계에서 다음 단계로 이동하지 못한 비율 | 퍼널 병목 구간(UI 문제 가능성)을 발견하는 핵심 지표 | 1 − 단계 전환율 |
| 최종 전환율 (Final Conversion Rate) | 앱 진입 대비 실제 결제까지 이어진 비율 | 서비스 전체 퍼널 성과 및 매출 전환 수준 평가 | 결제 이벤트 ÷ welcome 또는 home 이벤트 |
| 탐색 효율 (Explore Efficiency) | 탐색 이후 음식점 선택으로 이어지는 비율 | 검색/카테고리/추천 등 탐색 기능의 품질 평가 | restaurant 이벤트 ÷ explore 이벤트 |
| 퍼널 규모 추세 (Funnel Volume Trend) | 월별 또는 일평균 이벤트 규모 변화 | 사용자 유입 및 서비스 성장 여부 확인 | 월별 평균 이벤트 수 비교 |
<aside> 💡



</aside>
<aside> 💡
최종 퍼널 성과: 전체 퍼널 기준 최종 전환율(Payment / Welcome)은 약 10% 수준으로 나타나며, 서비스 유입 대비 실제 주문까지 이어지는 비율은 이 수준에서 형성된다. </aside>
<aside> 💡