Logo
Data

Data

Sales, price, product review score...

Assumptions

Assumptions

Linearity, independence, ignorability...

Model

Model

Regression, random forest, neural network...

What is data centricity?*

Data centricity is staying true to the data. Staying true to the data is not limited to prioritizing data over its applications or improving data quality. It is also about strengthening the path from the data to the models used to derive insights from the data. This path is defined by assumptions. Assumptions must be made about the data (and the underlying data generation processes) to connect data to models.**

Assumptions link data to models in statistics, engineering, and computer science. In a 1976 paper, the British statistician George Box famously wrote: “Remember that all models are wrong; the practical question is how wrong do they have to be to not be useful.” This is because all models simplify reality in order to reveal associations or causal relationships, or to make predictions about the future.

We can divide the assumptions used to learn from data into two main categories: Method-based and Model-based. Method-based assumptions refer to the statistical or machine learning methods used. Model-based assumptions refer to the assumptions that are specific to the problem and solution at hand.

Click to expand and learn more about the method-based and model-based assumptions |
  1. Method based: Different types of methods require different types and levels of assumptions. This first category has a well-established typology. Briefly, we can talk about three groups of assumptions here:
    1. Fully parametric: The probability distributions describing the data generation process behind a sample are assumed to follow a family of probability distributions with a finite number of unknown parameters. A common assumption is that the distribution of values is normal, with unknown mean and variance, and that the data sets are generated by simple random sampling.

      Example: As a parametric method, a linear regression model assumes, among other things, that the error term follows a normal distribution. That is, if the outcome is sales, we expect the difference between estimated sales and actual sales to be around the mean of the difference most of the time, with variations below and above the mean at about the same level and frequency.

    2. Non-parametric: The assumptions made about the process generating the data are much fewer than in parametric methods, but there are still assumptions, including random sampling. In addition, depending on the specific method, independence of observations may be assumed.

      Example: As a nonparametric method, a decision tree-based XGBoost does not assume any particular family of probability distributions, but random sampling remains a critical assumption.

    3. Semi-parametric: This implies assumptions between fully parametric and nonparametric approaches. For example, the mean of the outcome may be assumed to have a linear relationship with some explanatory variables (a parametric assumption). However, the variance around this mean need not be assumed to follow any particular distribution. Semiparametric models can often be divided into parametric and nonparametric parts (e.g., structural and random variation).

      Example: Gaussian Mixture Models (GMMs) are semi-parametric. A GMM can be used to cluster sales data (e.g., from different stores). In such a model, sales may be assumed to follow a mixture of several normal distributions (parametric component), while cluster membership may be assigned probabilistically by iteratively updating the model fit until convergence (nonparametric component).

  2. Model based: Different objectives and identification strategies require different types and levels of assumptions. Unlike the differences between the assumptions of the three broad types of methods, the differences due to modeling objectives are less structured. We broadly divide models into two groups:
    1. Causal modeling: Both experimental and observational data can be used in causal inference. Depending on the specific modeling approach, the assumptions required for causal modeling may differ, but we can list three fundamental assumptions to determine the average causal effect: positivity, consistency, and exchangeability.
      1. Positivity: Each subject (store, customer, etc.) has a positive probability of receiving all levels of the treatment variable (difficult, if not impossible to meet when a treatment is continuous).

        Example: If there is a promotion, each customer should have a non-zero probability of receiving the promotional offer and a non-zero probability of not receiving the promotional offer.

      2. Consistency: There are no multiple versions of the treatment, and a subject's (customer's) potential outcome under the observed treatment equals the subject's actual observed outcome. That is, hypothetically assigning the treatment should have the same effect as if the customer actually received the offer.

        Example: The potential sales for a customer who actually received the promotional offer should equal the observed sales. Note that this assumption would be violated if some customers received physical coupons while others received emails.

      3. Exchangeability: The assumption that control and treatment groups can be switched without changing the observed outcome. This can also be referred to as the independence assumption.

        Example: Conditional on the observed covariates (e.g., customer type, past sales, seasonality), the potential sales for customers who receive the promotion are comparable to those who do not receive the promotion. That is, the allocation of the promotion is independent of potential sales.

      In addition, (1) if compliance with the treatment is an issue (if compliance varies between subjects), the estimated effect may be reduced to the local average treatment effect.

      Example: The compliance assumption would require that when customers are assigned to receive the coupon, they actually receive and redeem the coupon.

      (2) There must be no interference between subjects (the treatment of one subject cannot affect the outcome of another subject). Together with consistency, this last assumption is called the Stable Unit Treatment Values Assumption (SUTVA = Consistency + No interference).

      Example: When a customer receives a coupon, their purchasing behavior should not be influenced by whether their friends or family members also received the coupon. This ensures no interference. The coupon must also be consistent in its terms and conditions. This ensures consistency.

    2. Predictive modeling: The fundamental premise of a predictive model is that the training set is a good representation of the test set. In other words, the underlying assumption is that historical/seen data is a useful predictor of future/unseen data. In addition, the data in the training and test samples must be representative of the population. These assumptions must be valid in addition to any methodological assumptions made by the underlying methods used for predictions.

      Example: The way the promotion performed in the past should be the same in the future. In addition, the historical and future samples of customer data should be representative of the population data.

Collapse

Being data-centric means making good assumptions and deriving the right insights from the data. This is not a trivial task. Method and model assumptions can get very complicated, and in the fast-paced data science environment, assumptions often go unchecked. But can you trust the insights from the data in such cases? The answer is a resounding no. That's why we're working on an AI tool to help you with this problem.

Want to learn more?

For articles on data centricity, visit our blog Data Duets.