📘 SERIES · CHAPTER 34

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.

⏱ 16 min read📅 September 2026📍 India · Noida · Delhi NCR
← Ch 33: Interview PrepCh 35: Data Ethics & Privacy →

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 MetricWhy This One
Food delivery appOrders delivered per weekCaptures both supply (restaurants) and demand (users) health
D2C fashion / beauty brandRepeat purchase rate (90-day)Retention is the margin; first-time buyers are often unprofitable
Edtech platformWeekly active learnersCourse completions lag; active learners predict long-term revenue
Fintech / lending appActive borrowers / active investorsTransactions are lagging; active users predict future revenue
B2B SaaS (India)Weekly active teams using core featureTeam adoption predicts renewal better than individual logins
E-commerce marketplaceGMV per active buyerCombines activity and spend — avoids gaming with low-value orders
Ride-hailing / logisticsSuccessful trips per dayReflects both driver supply and rider demand simultaneously
Common mistake: Using revenue or daily active users (DAU) as the NSM. Revenue is a lagging indicator. DAU rewards superficial engagement. The NSM should measure value delivered — not just activity or money collected.

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.

Example: D2C checkout funnel
Product Page View
10,000
100%
Add to Cart
4,200
42%
Begin Checkout
2,800
28%
Enter Address
2,100
21%
Payment Complete
1,500
15%

Insight: the biggest drop is Product Page → Add to Cart (58% drop). This is where to investigate — pricing, product images, reviews, page load speed.

SQL — FUNNEL ANALYSIS USING CONDITIONAL AGGREGATION
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.

SQL — WEEKLY COHORT RETENTION
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;
Example output — Weekly retention matrix
Cohort WeekWeek 0Week 1Week 2Week 4Week 8
Aug W1100%42%31%22%15%
Aug W2100%45%33%24%
Aug W3100%38%29%
Aug W4100%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.

AcquisitionHow do users find us?
KEY METRICS
  • Sessions / new users by channel (organic, paid, referral)
  • Cost per acquisition (CPA) by channel
  • Organic search traffic vs. paid
Indian example: A Noida D2C brand finds 60% of customers come from Instagram reels, 25% from Google Shopping, 15% from referrals. Paid CPA is ₹380, organic CPA is ₹90.
ActivationDo users have their first positive experience?
KEY METRICS
  • Sign-up completion rate
  • Time to first meaningful action (first order, first lesson, first transaction)
  • Onboarding funnel completion rate
Indian example: An edtech app finds only 34% of users who sign up complete their first lesson within 7 days. Fixing the onboarding email sequence improves this to 51%.
RetentionDo users come back?
KEY METRICS
  • Day 1 / Day 7 / Day 30 retention rates
  • Monthly active users (MAU) / Weekly active users (WAU)
  • Cohort retention curves
Indian example: A fintech app sees Day 30 retention drop to 18% for users acquired through paid ads vs. 38% for organic users — suggesting paid users are lower quality.
ReferralDo users tell others?
KEY METRICS
  • Net Promoter Score (NPS)
  • Referral rate (users who refer / total users)
  • Viral coefficient (invites sent × invite conversion rate)
Indian example: An Indian consumer app adds a "refer and earn ₹100" feature. Referral rate jumps from 4% to 19% in month 1 — but referred users have 40% lower LTV.
RevenueHow do users generate value?
KEY METRICS
  • Average order value (AOV)
  • Customer lifetime value (LTV)
  • LTV : CAC ratio (target > 3:1 for Indian consumer apps)
Indian example: A subscription app in Gurugram finds LTV:CAC ratio is 1.8:1 for monthly subscribers but 4.2:1 for annual subscribers — justifying a discount to push annual plans.

Product analytics tools — what Indian companies use

ToolBest ForUsed ByCostLearning Priority
Google Analytics 4Web/app traffic, events, funnelsMost Indian digital businessesFree⭐⭐⭐⭐⭐ Start here
MixpanelUser-level event analytics, funnels, cohortsIndian startups, D2CFree tier + paid⭐⭐⭐⭐ High value
AmplitudeProduct analytics, behavioural cohortsTech companies, SaaSFree tier + paid⭐⭐⭐⭐ High value
SQL + BigQuery/RedshiftCustom queries on raw event dataAny company with data infraPay-per-query⭐⭐⭐⭐⭐ Essential
Metabase / LookerInternal dashboards on product dataStartups, mid-size companiesFree (Metabase) / paid⭐⭐⭐⭐ Common
Firebase AnalyticsMobile app analyticsAndroid/iOS apps (very common in India)Free⭐⭐⭐ Mobile focus
Hotjar / Microsoft ClaritySession recordings, heatmapsE-commerce, SaaSFree 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.

Noida Expressway (Sec 125–137)
Roles: Data Analyst (Product), Growth Analyst
Companies: IT product companies, SaaS companies, e-commerce enablers
₹8–16 LPA
Noida Sector 62
Roles: Product Analyst, Analytics Engineer
Companies: Mid-size IT services, analytics startups
₹6–12 LPA
Gurugram (Cyber City / DLF)
Roles: Product Analyst, Growth Analyst, Data Scientist
Companies: Zomato, OYO, MakeMyTrip (regional offices), consulting firms, fintech
₹10–25 LPA
Delhi (Connaught Place / Okhla)
Roles: Digital Analytics Executive, Web Analyst
Companies: Media companies, retail brands, NGOs
₹5–10 LPA

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
← Ch 33: Interview PrepCh 35: Data Ethics & Privacy →
🎓 Free Demo Class — Online & Offline · Noida Sector 51