Data Quality
Schema Validation Tool
★ 4.1
Automated Data Profiling
★ 4.6
pip install data-linterpip install ydata-profilingpip install data-linterpip install ydata-profilingData engineers use Data Linter in CI pipelines to enforce dataset standards before promotion to production. Running `data-linter` on a new dataset file flags issues like potential PII in column names or inefficient data types — catching structural problems early in the development workflow rather than after data lands in the warehouse.
Python data engineers use ydata-profiling (formerly pandas-profiling) as the first step after ingesting a new dataset to understand its structure, quality, and statistical properties. A single call to `ProfileReport(df).to_file("report.html")` generates a full interactive report. It is used in data discovery workflows, pre-processing audits before ML feature engineering, and automated data quality checks in CI/CD pipelines for dataset validation.
Individual Tool Pages