---
title: The value of quality data
description: Learn how critical the quality of data is to building truly powerful data models.
image: https://tingono.ai/hubfs/Data%20Explosion.jpg
---

 Product

 Overview

 Benefits

 Predict

 Proactively uncover opportunities and risks.

 Prepare

 All your customer data in a single view.

 Pursue

 Automate and capture revenue faster.

Use cases

Upsell

Cross-sell

Churn

Integrations

CSPs

 Resources

Being Data Driven Blog FAQs Security & Compliance 

About [Watch a demo](https://www.tingono.com/choose-how-to-see-a-tingono-demo)

 Product

Overview

---

Benefits

Predict Prepare Pursue

---

Use Cases

Upsell Cross-sell Churn

---

Integrations

CSPs

---

 Resources

Being Data Driven Blog FAQs Security & Compliance

---

About

---

[Watch a demo](https://www.tingono.com/choose-how-to-see-a-tingono-demo)

[ ⬅️ Back to posts ](https://tingono.ai/blog)

Filter By Categories

- [Revenue Growth](https://tingono.ai/blog/topic/revenue-growth)
- [AI / ML](https://tingono.ai/blog/topic/ai-ml)
- [Customer Retention](https://tingono.ai/blog/topic/customer-retention)
- [GTM](https://tingono.ai/blog/topic/gtm)
- [SaaS](https://tingono.ai/blog/topic/saas)

# The value of quality data

[![Tienan Li](https://tingono.ai/hubfs/Tienan.jpeg)](https://tingono.ai/blog/author/tienan-li)

By

[Tienan Li](https://tingono.ai/blog/author/tienan-li)

 August 15, 2022

[**](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Ftingono.ai%2Fblog%2Fthe-value-of-quality-data) [**](http://www.linkedin.com/shareArticle?mini=true&url=https://tingono.ai/blog/the-value-of-quality-data) [**](https://www.twitter.com/share?url=https%3A%2F%2Ftingono.ai%2Fblog%2Fthe-value-of-quality-data)

**  [AI / ML](https://tingono.ai/blog/topic/ai-ml) [Business Data](https://tingono.ai/blog/topic/business-data)

We live in an age of information explosion. The information we receive every day is more than a person would have received in a month 50 years ago!

 

This information deluge is easy to get lost in. Not only is it a LOT of information to organize, but it’s also often noisy, inaccurate, and sometimes even fake…All of this makes it challenging for us to process.![Lots to process](https://tingono.ai/hs-fs/hubfs/Lots%20to%20process.gif?width=250&name=Lots%20to%20process.gif)

This is true for machine learning models too! Sure, [they can process much more data than we can](https://www.tingono.com/blog/why-product-use-alone-doesnt-necessarily-mean-revenue-growth), but they still must contend with volume, noise, and inconsistencies.

 

This is one reason why data quality is so important.

## Data Quality > Data Quantity

True enough, [having “enough” data is critical](https://www.tingono.com/blog/data-data-data). But even an endless amount of data will have its limits if it is all garbage…

 

A large dataset is helpful to represent as many variants as possible. But if the data quality is not high enough to represent the variants accurately, it’s counterproductive.

 

Training a model with a “noisy” dataset is like trying to put together an IKEA crib with just the pictures. Inevitably it will be wrong and will have to be redone.![Building IKEA](https://tingono.ai/hs-fs/hubfs/Building%20IKEA.gif?width=391&name=Building%20IKEA.gif)

So, we spend time cleaning and preparing data to reduce the noise. Different types of data require a focus on different types of data quality.

 

For text data, we might adjust misspellings, gibberish words, weird symbols, grammar errors, etc. For image data, we might adjust sharpness, resolution, noise, etc.

 

Tabular data also requires cleaning, but it’s an entirely different beast because tabular data is heterogeneous. Remember when I said, “Data scientist and machine learning engineers spend 40% to 60% of their time preparing data”? Tabular data is an example of why. 

## Data Quality is a process

So, [turning data into *quality* data](https://tingono.ai/blog/preparing-for-ml-through-data-exploration) is a process. It takes time. And it takes a certain expertise to do it both “right” and efficiently.

 

Generally, the first step in the process is to clean and prepare the data. This typically involves things like:

- Checking column headings to ensure they are all well-defined.
- Standardizing data types and formats (e.g. strings in a numerical column, datetime formats, etc.).
- Filling in missing values from different columns. This can be like a very frustrating game of hide-and-seek.

This cleaning phase is pretty standard. Although it is time-consuming, it is fairly straightforward.

 

However, to ensure we feel good about the data going into our model, we need to do a deeper analysis and more pre-processing.

## 3 dimensions to creating higher quality data

Depending on the data and the model we are building, we might have to do different things. But generally speaking, we will usually optimize for three critical elements: accuracy, balance, and consistency.

### The 1st critical data element: Accuracy

We hope (maybe pray) our data will accurately describe the pattern we want our model to learn. Unfortunately, this often just doesn’t work out.![Incomplete prayer](https://tingono.ai/hs-fs/hubfs/Incomplete%20prayer.gif?width=393&name=Incomplete%20prayer.gif)

There are many accuracy issues we need to guard against. But a common one is extreme values. These could come from anomaly cases or manual mistakes.

 

For example, a person listed as sixty feet tall is in all probabilities inaccurate. This is likely a manual mistake that can be easily fixed. Even when these extreme values come from real cases, we still want to fix them. Because they usually are rare, edge cases that we don’t want to influence our model.

 

Usually, accuracy errors can be fixed easily, but finding them in a large data set is another issue.

### The 2nd critical data element: Balance

When our data comes from multiple groups, we hope (again, likely pray) the amount of data from each group is balanced. However, due to data availability or sampling methods, we almost always get imbalanced data.

 

The impact of imbalanced data is it makes our model unable to perform equally well in every group. This is because some groups train the model better than others. So imbalanced data produces an imbalance in model predictions.![Imbalances](https://tingono.ai/hs-fs/hubfs/Imbalances.gif?width=438&name=Imbalances.gif)

Of course, in some cases, the imbalance is actually a part of the model. Like fraud detection in credit card applications. There tends to be fewer cases of actual fraud, so the data is naturally skewed.

 

In situations like this, we need to apply some techniques to make our model able to learn from a very imbalanced dataset. Because this is what the real data is, and our model is supposed to be data driven.

### The 3rd critical data element: Consistency

Sometimes the data we are working with is recorded across a number of years. Checking the data consistency across this timeline is critical.

 

For instance, when we are predicting future revenue for a business, our training label (revenue) is calculated by its price model. But the price model might be different for data that comes from a few years ago.

 

Therefore, we need to make the historical data consistent with the newer data. If our model learns from this data without any preprocessing to establish consistency, it will produce a model that is not very robust.

 

Just as critically, ensuring consistency is an ongoing effort.

 

Once we train a model and make predictions in real-time, we need to keep checking the consistency between new and old data. If the distribution of new data changes, our model will start generating trash. So, detecting changes in data distribution and retraining our model over time is essential.![Generating Trash](https://tingono.ai/hs-fs/hubfs/Generating%20Trash.gif?width=277&name=Generating%20Trash.gif)

## When it comes to Data Quality, I wish you Mazel Tov

As mentioned in [my previous post about data quantity](https://tingono.ai/blog/data-data-data), without sufficient quantity and quality of data, you’ll never have a truly powerful and useful model.

 

My hope is this statement is now a little more clear.

 

Both data quantity and quality are core to building a machine learning model. Yet, I believe, data quality is even more important than quantity.

 

It’s a process to create data quality, but the robust, impactful models created make the journey well worth it. And so, I wish you [mazel tov](https://en.wikipedia.org/wiki/Mazel_tov) in this pursuit!

### Popular Stories

<https://tingono.ai/blog/10-must-read-linkedin-posts-customer-success-mar-2023>

[10 Must Read LinkedIn Posts: Customer Success (Mar 2023)](https://tingono.ai/blog/10-must-read-linkedin-posts-customer-success-mar-2023) Apr 04, 2023

<https://tingono.ai/blog/the-rise-and-totally-unnecessary-burnout-of-customer-success>

[The rise and (totally unnecessary) burnout of Customer Success](https://tingono.ai/blog/the-rise-and-totally-unnecessary-burnout-of-customer-success) Aug 01, 2022

<https://tingono.ai/blog/reactive-to-proactive-how-generative-ai-is-reshaping-csm-workflows>

[Reactive to Proactive: How Generative AI Is Reshaping CSM Workflows](https://tingono.ai/blog/reactive-to-proactive-how-generative-ai-is-reshaping-csm-workflows) Jul 11, 2025

### Popular Tags

[Revenue Growth](https://tingono.ai/blog/topic/revenue-growth) [AI / ML](https://tingono.ai/blog/topic/ai-ml) [Customer Retention](https://tingono.ai/blog/topic/customer-retention) [GTM](https://tingono.ai/blog/topic/gtm) [SaaS](https://tingono.ai/blog/topic/saas) [Business Data](https://tingono.ai/blog/topic/business-data) [Customer Expansion](https://tingono.ai/blog/topic/customer-expansion) [Business Metrics](https://tingono.ai/blog/topic/business-metrics) [Automation](https://tingono.ai/blog/topic/automation) [Data](https://tingono.ai/blog/topic/data) [Churn](https://tingono.ai/blog/topic/churn) [startup](https://tingono.ai/blog/topic/startup) [Hiring](https://tingono.ai/blog/topic/hiring) [Risks](https://tingono.ai/blog/topic/risks) [SOC 2](https://tingono.ai/blog/topic/soc-2) [Security](https://tingono.ai/blog/topic/security)

[Previous Post](https://tingono.ai/blog/lessons-from-my-summer-internship-with-tingono)

##### [Lessons from my summer internship with Tingono](https://tingono.ai/blog/lessons-from-my-summer-internship-with-tingono)

[Next Post](https://tingono.ai/blog/the-benefits-of-investing-in-digital-cs-tools)

##### [The benefits of investing in digital CS tools](https://tingono.ai/blog/the-benefits-of-investing-in-digital-cs-tools)

Connect

[![Share on linkedin](https://tingono.ai/hubfs/linkedin-color.png) ](https://www.linkedin.com/company/tingono) [![Share on twitter](https://tingono.ai/hubfs/twitter-color.png) ](https://twitter.com/tingono_ai) [![Share on facebook](https://tingono.ai/hubfs/facebook-color.png) ](https://www.facebook.com/TingonoAI) [![Share on email](https://tingono.ai/hubfs/email-color.png) ](mailto:hello@tingono.com) [![Share on rss](https://tingono.ai/hubfs/rss-color.png) ](https://www.tingono.com/blog/rss.xml)

[Terms of Use](https://www.tingono.com/terms)

[Privacy Policy](https://www.tingono.com/privacy)

© 2022 Tingono Inc.  
 All rights reserved.