Estimate variance for ratio metrics

Quick Overview

This question evaluates statistical inference and experimental-analysis skills for data scientists, including variance estimation for ratio metrics via the delta method, covariance estimation from sample moments, model-based comparisons (ANCOVA/log models with offsets), bootstrap and t-test inference considerations, and robustness techniques for heavy-tailed revenue such as winsorization and robust M-estimators. It is commonly asked to assess both theoretical derivation and practical estimation trade-offs in A/B or experimental settings; the category is Statistics & Math and the level of abstraction spans conceptual understanding and practical application.

Estimate variance for ratio metrics

Company: Meta

Role: Data Scientist

Category: Statistics & Math

Difficulty: hard

Interview Round: Onsite

Your KPI is ARPU = Revenue/ActiveUsers, computed per bucket with corr(Revenue, ActiveUsers)=0.6. Derive an approximate Var(ARPU) using the delta method, including the covariance term, and state how you would estimate inputs from sample moments. Compare testing ARPU directly vs. modeling log‑Revenue with log‑ActiveUsers as a covariate (or using ANCOVA). When is a t‑test acceptable, when would you prefer a bootstrap, and how would you handle heavy‑tailed revenue (e.g., winsorization or robust M‑estimators)?

Quick Answer: This question evaluates statistical inference and experimental-analysis skills for data scientists, including variance estimation for ratio metrics via the delta method, covariance estimation from sample moments, model-based comparisons (ANCOVA/log models with offsets), bootstrap and t-test inference considerations, and robustness techniques for heavy-tailed revenue such as winsorization and robust M-estimators. It is commonly asked to assess both theoretical derivation and practical estimation trade-offs in A/B or experimental settings; the category is Statistics & Math and the level of abstraction spans conceptual understanding and practical application.

|Home/Statistics & Math/Meta
Meta logo
Meta
Oct 13, 2025, 9:49 PM
hardData ScientistOnsiteStatistics & Math
4
0

KPI Variance via Delta Method and Inference Choices for ARPU

Context

You run experiments where each arm produces aggregate totals per analysis unit (e.g., day, country-day, or bucket):

  • Revenue (R)
  • ActiveUsers (A)

Your KPI is ARPU = R/A computed per unit, then compared across arms. You are told corr(R, A) = 0.6 at the unit level.

Tasks

  1. Using the delta method for the ratio g(R, A) = R/A, derive an approximate Var(ARPU) that includes the covariance term.
  2. State clearly how you would estimate all inputs (means, variances, covariance/correlation) from sample moments.
  3. Compare two analysis strategies:
    • Testing ARPU directly (ratio of totals per unit).
    • Modeling log-Revenue with log-ActiveUsers as a covariate (ANCOVA-style), including the offset variant.
  4. Guidance on inference choices:
    • When is a t-test acceptable?
    • When prefer a bootstrap (and which kind)?
  5. Handling heavy-tailed revenue: recommendations on winsorization and robust M-estimators.
Loading comments...