Product Analytics for Data Analysts India 2026
North star metrics, funnel analysis, cohort retention, and A/B testing — the product analytics skills that open up startup and D2C roles in Noida, Gurugram, and Delhi NCR.
Why product analytics matters for data analysts in India
India's startup ecosystem — D2C brands, fintech apps, edtech platforms, food delivery, and SaaS companies — has created strong demand for analysts who can go beyond MIS reports and dashboards to answer questions like: "Why are users dropping off at checkout?" and "Which acquisition channel produces customers who actually come back?"
Product analytics roles at Indian startups in Gurugram and Noida Expressway typically pay 15-25% more than equivalent general data analyst roles. And even if you stay in a traditional analyst role, understanding product metrics makes you significantly more effective when working with product or engineering teams.
North Star Metric — what it is and how Indian companies define it
The North Star Metric (NSM) is the single number that best reflects how much value your product is delivering to users. It connects daily work to long-term business health.
| Company Type (Indian examples) | North Star Metric | Why This One |
|---|---|---|
| Food delivery app | Orders delivered per week | Captures both supply (restaurants) and demand (users) health |
| D2C fashion / beauty brand | Repeat purchase rate (90-day) | Retention is the margin; first-time buyers are often unprofitable |
| Edtech platform | Weekly active learners | Course completions lag; active learners predict long-term revenue |
| Fintech / lending app | Active borrowers / active investors | Transactions are lagging; active users predict future revenue |
| B2B SaaS (India) | Weekly active teams using core feature | Team adoption predicts renewal better than individual logins |
| E-commerce marketplace | GMV per active buyer | Combines activity and spend — avoids gaming with low-value orders |
| Ride-hailing / logistics | Successful trips per day | Reflects both driver supply and rider demand simultaneously |
Funnel analysis — with SQL example
A funnel tracks the percentage of users who complete each step of a defined sequence. Every product has multiple funnels — acquisition, activation, checkout, onboarding.
Insight: the biggest drop is Product Page → Add to Cart (58% drop). This is where to investigate — pricing, product images, reviews, page load speed.
SELECT
COUNT(DISTINCT user_id) AS product_views,
COUNT(DISTINCT CASE WHEN step >= 'add_to_cart' THEN user_id END) AS add_to_cart,
COUNT(DISTINCT CASE WHEN step >= 'begin_checkout' THEN user_id END) AS begin_checkout,
COUNT(DISTINCT CASE WHEN step >= 'enter_address' THEN user_id END) AS enter_address,
COUNT(DISTINCT CASE WHEN step = 'payment_done' THEN user_id END) AS payment_complete
FROM events
WHERE event_date >= CURRENT_DATE - INTERVAL 30 DAY
AND step IN ('product_view','add_to_cart','begin_checkout',
'enter_address','payment_done');Add WHERE clauses to segment by device type, acquisition channel, city, or product category to find where each segment drops off.
Cohort retention analysis — SQL template
Cohort retention groups users by when they first used the product and tracks what percentage return in subsequent weeks or months. It is the most important metric for understanding whether a product is truly delivering value.
WITH cohorts AS (
-- Each user's first activity week
SELECT
user_id,
DATE_TRUNC('week', MIN(event_date)) AS cohort_week
FROM events
GROUP BY user_id
),
activity AS (
-- All activity with cohort assignment
SELECT
e.user_id,
c.cohort_week,
DATE_TRUNC('week', e.event_date) AS activity_week,
DATEDIFF('week', c.cohort_week, DATE_TRUNC('week', e.event_date)) AS weeks_since_first
FROM events e
JOIN cohorts c USING (user_id)
)
SELECT
cohort_week,
weeks_since_first,
COUNT(DISTINCT user_id) AS active_users,
ROUND(
100.0 * COUNT(DISTINCT user_id) /
FIRST_VALUE(COUNT(DISTINCT user_id)) OVER (
PARTITION BY cohort_week ORDER BY weeks_since_first
), 1
) AS retention_pct
FROM activity
GROUP BY cohort_week, weeks_since_first
ORDER BY cohort_week, weeks_since_first;| Cohort Week | Week 0 | Week 1 | Week 2 | Week 4 | Week 8 |
|---|---|---|---|---|---|
| Aug W1 | 100% | 42% | 31% | 22% | 15% |
| Aug W2 | 100% | 45% | 33% | 24% | — |
| Aug W3 | 100% | 38% | 29% | — | — |
| Aug W4 | 100% | 44% | — | — | — |
The AARRR metrics framework — for Indian product context
AARRR (Acquisition → Activation → Retention → Referral → Revenue) is the standard product metrics framework used by startups. Here is what each stage means for common Indian product types.
- Sessions / new users by channel (organic, paid, referral)
- Cost per acquisition (CPA) by channel
- Organic search traffic vs. paid
- Sign-up completion rate
- Time to first meaningful action (first order, first lesson, first transaction)
- Onboarding funnel completion rate
- Day 1 / Day 7 / Day 30 retention rates
- Monthly active users (MAU) / Weekly active users (WAU)
- Cohort retention curves
- Net Promoter Score (NPS)
- Referral rate (users who refer / total users)
- Viral coefficient (invites sent × invite conversion rate)
- Average order value (AOV)
- Customer lifetime value (LTV)
- LTV : CAC ratio (target > 3:1 for Indian consumer apps)
Product analytics tools — what Indian companies use
| Tool | Best For | Used By | Cost | Learning Priority |
|---|---|---|---|---|
| Google Analytics 4 | Web/app traffic, events, funnels | Most Indian digital businesses | Free | ⭐⭐⭐⭐⭐ Start here |
| Mixpanel | User-level event analytics, funnels, cohorts | Indian startups, D2C | Free tier + paid | ⭐⭐⭐⭐ High value |
| Amplitude | Product analytics, behavioural cohorts | Tech companies, SaaS | Free tier + paid | ⭐⭐⭐⭐ High value |
| SQL + BigQuery/Redshift | Custom queries on raw event data | Any company with data infra | Pay-per-query | ⭐⭐⭐⭐⭐ Essential |
| Metabase / Looker | Internal dashboards on product data | Startups, mid-size companies | Free (Metabase) / paid | ⭐⭐⭐⭐ Common |
| Firebase Analytics | Mobile app analytics | Android/iOS apps (very common in India) | Free | ⭐⭐⭐ Mobile focus |
| Hotjar / Microsoft Clarity | Session recordings, heatmaps | E-commerce, SaaS | Free tier | ⭐⭐⭐ Qualitative |
Product analytics jobs in Delhi NCR — where and what
Product analytics roles are concentrated at tech companies and startups. Here is the landscape by cluster in Delhi NCR.
Frequently asked questions
What is product analytics and how is it different from data analytics?
Product analytics is a specialisation of data analytics focused on understanding how users interact with a product — an app, a website, or a software platform. While a general data analyst might work on sales reports, MIS dashboards, or financial analysis, a product analyst focuses specifically on user behaviour: how users find the product, which features they use, where they drop off, and how to improve retention and growth. Product analytics roles are common at Indian startups, D2C brands, and tech companies in Noida, Gurugram, and Bengaluru.
What is a north star metric and how do Indian startups use it?
A north star metric (NSM) is the single metric that best captures the core value a product delivers to users. It aligns the entire company around one number. Examples from Indian companies: for a food delivery app — "orders delivered per week"; for an edtech platform — "course completion rate"; for a fintech app — "active borrowers per month"; for an e-commerce D2C brand — "repeat purchase rate in 90 days". The NSM should grow when the business is healthy. Revenue is usually NOT the best NSM because it is a lagging indicator — user value metrics are leading.
What is funnel analysis in product analytics?
Funnel analysis tracks how users progress through a defined sequence of steps — like Visit → Sign Up → Add to Cart → Purchase — and measures the drop-off at each step. For an Indian D2C brand, a typical checkout funnel might show: 10,000 users visit product page → 4,000 add to cart (60% drop) → 2,500 reach checkout (37.5% drop) → 1,800 complete payment (28% drop). Funnel analysis tells you where to focus optimisation effort. It is done in SQL (with window functions), Python, or tools like Mixpanel, Amplitude, or Google Analytics 4.
How do I do cohort retention analysis in SQL?
Cohort retention in SQL: group users by their first activity date (acquisition cohort), then calculate the percentage who return in subsequent weeks/months. The key steps are: (1) identify each user's first_date using MIN(event_date); (2) join this back to the events table; (3) calculate the difference in weeks/months between first_date and each subsequent event_date; (4) aggregate to get retention rate per cohort per period. The result is a retention matrix showing, for example, "Week 1 cohort retained 45% by Week 4". This is a standard advanced SQL question in data analyst interviews at Indian product companies.
What tools do product analysts use at Indian startups in 2026?
Product analysts at Indian startups and tech companies typically use: Mixpanel or Amplitude for event-based product analytics; Google Analytics 4 for web and app traffic; SQL (on BigQuery, Snowflake, or Redshift) for custom queries on raw event data; Python with Pandas for deeper analysis and cohort modelling; Looker or Metabase for internal dashboards; and A/B testing tools like Optimizely, Firebase A/B Testing, or custom frameworks. Entry-level product analyst roles in Noida and Gurugram often start with GA4 + SQL + Excel before moving to more advanced tools.
What is the salary of a product analyst in Noida and Delhi NCR in 2026?
Product analyst salaries in Delhi NCR in 2026: entry-level (0-1 year) at Indian startups — ₹5-8 LPA; mid-level (2-4 years) — ₹9-16 LPA; senior product analyst (4+ years) — ₹15-25 LPA. Companies in Gurugram (Swiggy, Zomato, Paytm operations, OYO, MakeMyTrip, consulting firms) pay 20-30% higher than Noida for equivalent roles. Product analytics skills command a 15-25% premium over general data analyst roles because of the specialised domain knowledge required.
How do I transition from data analyst to product analyst in India?
To move from data analyst to product analyst in India: build SQL skills for event data (funnel queries, cohort retention, session analysis); learn at least one product analytics tool (GA4 is free and widely used; Mixpanel has a free tier); do a portfolio project analysing a real app or website (use publicly available data or build a small app to generate event data); target startups and D2C companies in Noida and Gurugram where product analytics teams are growing fastest; and apply for "Data Analyst — Product" or "Growth Analyst" roles as stepping stones. The transition typically takes 6-12 months of deliberate skill-building.
Build the SQL and analytics skills product companies want
EVIKA ACADEMY at Noida Sector 51 teaches SQL, Python, and Power BI with real project work — the foundation for moving into product analytics. Free demo class near Sector 51 Metro Station (Aqua Line).
📱 WhatsApp 8081035456 — Book Free Demo