first seen은 날짜 속성이야. 날짜가 찍혀있는 카운트를 추출하는 수식은?
Hi 김영준, Please stand by as I search the Mixpanel knowledge base for an AI-powered answer. I normally take about 15 seconds or so. In case AI cannot answer your question, feel free to reach out to Mixpanel support at mixpanel.com/get-support. If you have follow-up questions for this thread, please tag me again with your question: @kapa.ai <follow-up question> 👋
Feel free to ask a follow-up question once I've answered by mentioning me with @kapa.ai
네, Mixpanel의 "First Seen"($mp_first_event_time) 속성은 날짜 속성입니다. 이 속성이 값(즉, 날짜)이 있는 사용자 수(카운트)를 추출하려면, 일반적으로 "First Seen"이 null이 아닌(날짜가 존재하는) 프로필의 수를 세면 됩니다.
Mixpanel의 공식 문서에서는 JQL(JavaScript Query Language)이나 API를 통해 날짜 속성의 카운트를 직접 추출하는 예시가 명시적으로 나와 있지는 않지만, 일반적으로 다음과 같은 방식으로 접근할 수 있습니다:
- "First Seen" 속성이 존재하는(즉, null이 아닌) 사용자 프로필의 수를 집계 - Insights 리포트에서 "First Seen"을 기준으로 유저 카운트 측정
예를 들어, JQL을 사용할 경우(참고용):
```
function main() { return People() .filter(function(user) { return user.properties["$mp_first_event_time"] != null; }) .reduce(mixpanel.reducer.count()); }
LBKS이 코드는 "First Seen" 날짜가 존재하는(즉, 값이 있는) 프로필의 수를 카운트합니다.
또는, Mixpanel UI에서 Insights 리포트에서 "First Seen" 속성을 breakdown 또는 filter로 사용하여 날짜별로 유저 수를 볼 수 있습니다.
"First Seen" 속성에 대한 자세한 설명은 공식 문서에서 확인하실 수 있습니다: [Reserved Properties: $mp_first_event_time](https://docs.mixpanel.com/docs/data-structure/property-reference/reserved-properties)
kapa.ai is still learning and improving, please let me know how I did by reacting below.
ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups or DM the app for 1-to-1 help.
