Skip to main content

YData open-source tools for Data Quality.

Project description

ydata-quality is now data-quality. This package has been renamed to data-quality. Please follow the Migration Guide as soon as possible — the old package will no longer receive updates or bug fixes.

YData Quality

ydata_quality is an open-source python library for assessing Data Quality throughout the multiple stages of a data pipeline development.

A holistic view of the data can only be captured through a look at data from multiple dimensions and ydata_quality evaluates it in a modular way wrapped into a single Data Quality engine. This repository contains the core python source scripts and walkthrough tutorials.

Quickstart

The source code is currently hosted on GitHub at: https://github.com/ydataai/ydata-quality

Binary installers for the latest released version are available at the Python Package Index (PyPI).

pip install ydata-quality

Comprehensive quality check in few lines of code

from ydata_quality import DataQuality
import pandas as pd

#Load in the data
df = pd.read_csv('./datasets/transformed/census_10k.csv')

# create a DataQuality object from the main class that holds all quality modules
dq = DataQuality(df=df)

# run the tests and outputs a summary of the quality tests
results = dq.evaluate()
Warnings:
	TOTAL: 5 warning(s)
	Priority 1: 1 warning(s)
	Priority 2: 4 warning(s)

Priority 1 - heavy impact expected:
	* [DUPLICATES - DUPLICATE COLUMNS] Found 1 columns with exactly the same feature values as other columns.
Priority 2 - usage allowed, limited human intelligibility:
	* [DATA RELATIONS - HIGH COLLINEARITY - NUMERICAL] Found 3 numerical variables with high Variance Inflation Factor (VIF>5.0). The variables listed in results are highly collinear with other variables in the dataset. These will make model explainability harder and potentially give way to issues like overfitting. Depending on your end goal you might want to remove the highest VIF variables.
	* [ERRONEOUS DATA - PREDEFINED ERRONEOUS DATA] Found 1960 ED values in the dataset.
	* [DATA RELATIONS - HIGH COLLINEARITY - CATEGORICAL] Found 10 categorical variables with significant collinearity (p-value < 0.05). The variables listed in results are highly collinear with other variables in the dataset and sorted descending according to propensity. These will make model explainability harder and potentially give way to issues like overfitting. Depending on your end goal you might want to remove variables following the provided order.
	* [DUPLICATES - EXACT DUPLICATES] Found 3 instances with exact duplicate feature values.

On top of the summary, you can retrieve a list of detected warnings for detailed inspection.

# retrieve a list of data quality warnings 
warnings = dq.get_warnings()

Migration Guide

1. Uninstall the old package

pip uninstall ydata-quality

2. Install the new package

pip install data-quality

3. Update your imports

Find and replace all occurrences of the old import in your codebase:

# Before
import ydata_quality
from data_quality import DataQuality

# After
import data_quality
from data_quality import DataQuality

You can use this one-liner to find all affected files:

grep -r "ydata_quality" . --include="*.py"

Examples

Here you can find walkthrough tutorials and examples to familiarize with different modules of ydata_quality

To dive into any focussed module, and to understand how they work, here are tutorial notebooks:

  1. Bias and Fairness
  2. Data Expectations
  3. Data Relations
  4. Drift Analysis
  5. Duplicates
  6. Labelling: Categoricals and Numericals
  7. Missings
  8. Erroneous Data

Contributing

We are open to collaboration! If you want to start contributing you only need to:

  1. Search for an issue in which you would like to work on. Issues for newcomers are labeled with good first issue.
  2. Create a PR solving the issue.
  3. We would review every PR and either accept or ask for revisions.

You can also join the discussions on our Discord Community and request features/bug fixes by opening issues on our repository.

Support

For support in using this library, please join our Discord server. The Discord community is very friendly and great about quickly answering questions about the use and development of the library. Click here to join our Discord community!

License

GNU General Public License v3.0

About

With ♥️ from YData Development team

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ydata_quality-0.1.2.tar.gz (49.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ydata_quality-0.1.2-py2.py3-none-any.whl (55.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file ydata_quality-0.1.2.tar.gz.

File metadata

  • Download URL: ydata_quality-0.1.2.tar.gz
  • Upload date:
  • Size: 49.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ydata_quality-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a0e7d9816b3cd07167c7d2cb0c24cd88477fef49549540d6a94a96c8dad497bf
MD5 96b898971dbb6b16f25151010c958e7e
BLAKE2b-256 e1b46e100938924b0d008f7cc21afce073e596b4246c390eda97e30258e04927

See more details on using hashes here.

Provenance

The following attestation bundles were made for ydata_quality-0.1.2.tar.gz:

Publisher: release.yml on Data-Centric-AI-Community/ydata-quality

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ydata_quality-0.1.2-py2.py3-none-any.whl.

File metadata

  • Download URL: ydata_quality-0.1.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 55.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ydata_quality-0.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 638d670a893505ad21a9a2abeaaac21a1b26f39c465f0014bdc4997e8be1dbe6
MD5 0f2a55ecec295001d55eb451bb34d99e
BLAKE2b-256 b7d14e08c9a3c1d1409ffb4a9c1e250b3e1b54062deff36acc123859e0f4b92f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ydata_quality-0.1.2-py2.py3-none-any.whl:

Publisher: release.yml on Data-Centric-AI-Community/ydata-quality

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page