How Do You Handle Missing Data in a Critical Analysis?

    D

    How Do You Handle Missing Data in a Critical Analysis?

    In the realm of data analysis, handling gaps in data can be as crucial as the analysis itself. We sought the expertise of Principal and Lead Data Scientists to share their strategies. From employing simple and advanced imputation techniques to understanding and addressing missing data types, here are five valuable insights on maintaining the integrity of critical analyses.

    • Simple and Advanced Imputation Techniques
    • Employ Multiple Imputation for Accuracy
    • MICE Preserves User Behavior Analysis Integrity
    • Dropping Data with Missing ZIP Codes
    • Understand and Address Missing Data Types

    Simple and Advanced Imputation Techniques

    As a data scientist, missing data is common in critical analyses. Usually, starting with simple imputation methods such as using the mean, median, or mode for the observed data works for simpler datasets. These methods are best for small datasets with low percentages of missing values and data missing completely at random (MCAR). Advanced imputation methods such as K-Nearest Neighbors (KNN) Imputation, Multiple Imputation by Chained Equations (MICE), Expectation-Maximization (EM), or Predictive Model Imputation can be used when the data is complex and large.

    I used the MICE method for a project—basically, you iteratively estimate missing values (E-step) and maximize the likelihood function with the estimated data (M-step) until convergence. This method works well with continuous data and datasets where missingness depends on unobserved data. If you have surveys or categorical data, you can use Hot-Deck Imputation, where you replace missing values with observed responses from similar units based on similarity metrics or matching variables.

    By systematically applying these methods, I ensure the integrity and reliability of the analysis, addressing missing data in a structured and effective manner.

    Swagata Ashwani
    Swagata AshwaniPrincipal Data Scientist

    Employ Multiple Imputation for Accuracy

    In a critical analysis with missing data, we often use a method called multiple imputation to fill in the gaps. This technique involves making educated guesses for the missing values several times to create complete data sets. By analyzing all these complete data sets together, we can make sure our results are accurate and reliable, even with the missing information.

    Ben LandeLead Data Scientist, Onesignal

    MICE Preserves User Behavior Analysis Integrity

    In a critical analysis for a user behavior analytics (UBA) model, I encountered substantial missing data in daily usage metrics. To handle this, I used Multiple Imputation by Chained Equations (MICE), which preserves data integrity by creating multiple imputed datasets and reflecting real-world variability. This method involves iteratively imputing missing values while considering other features, and then performing the analysis on each imputed dataset.

    Finally, I pooled the results to obtain robust conclusions. MICE reduced bias and ensured the imputed values were consistent and realistic. This approach maintained the accuracy and reliability of the UBA model's findings, crucial for effective anomaly detection.

    Vikram ChauhanLead Data Scientist, Citrix

    Dropping Data with Missing ZIP Codes

    In the lane-clustering exercise, our objective was to cluster geographically similar lanes (source-destination pairs) to attract cheaper bids from vendors during the freight procurement auction. We used latitude and longitude information corresponding to the ZIP codes of the locations as input to the agglomerative hierarchical clustering algorithm.

    Some locations lacked ZIP codes, and using the median or mean of other latitude/longitude values from the same city was not suitable, as it could result in significantly different clusters. Given the criticality of accurate cluster formation and its impact on the business, we decided to drop rows with missing ZIP code data. This decision was feasible since less than 2% of the data had missing information.

    Robert NixonData Scientist, Pando

    Understand and Address Missing Data Types

    In any critical analysis, handling missing data is essential to maintaining the validity and integrity of our findings. Handling missing values is one of the most important steps in ensuring accurate and trustworthy model predictions. There exist several possible explanations for the absence of specific values in the dataset.

    The methodology used to handle missing data is influenced by the reasons behind the missing data in the dataset. Thus, it's vital to comprehend the potential causes of the missing data. It is essential to comprehend the different kinds of missing values included in datasets in order to handle missing data efficiently and guarantee appropriate analyses.

    Here are some steps we can follow:

    First, identify the kind of missing data, which can be divided into three categories: missing not at random (MNAR), missing completely at random (MCAR), and missing at random (MAR).

    Then, conduct a thorough case analysis that includes all relevant data for each variable of interest. If the missing data are not entirely random, statistical power may be lost as a result.

    For that variable, substitute the observed data's mean, median, or mode for any missing values. Then, create several sets of tenable values for missing data using a model that considers the correlation between the variables.

    Next, use multiple imputation to produce various likely values in order to account for imputation process uncertainty. Then, use Maximum Likelihood Estimation to address missing data within the modeling framework and use all available data for estimating model parameters.

    Finally, eliminate columns or rows that have missing values. Although this is an easy method, it may not work well if a large percentage of your data is missing. Too much data deletion may compromise the validity of your findings.

    Multiple Imputation is one method that has successfully maintained the integrity of the results in my studies, particularly when working with missing data. This statistical method entails producing several logical values for every missing data point. The distribution from which these values are taken represents the uncertainty surrounding the missing data's actual value. The final estimates and uncertainties that accurately reflect the uncertainty resulting from missing data are then obtained by conducting statistical analysis on each dataset independently and combining the results.

    Dr. Manash Sarkar
    Dr. Manash SarkarExpert Data Scientist, Limendo GmbH