GoldenCheck
GoldenCheck profiles data and surfaces quality issues: missing values, format inconsistencies, outliers, duplicates. Full report field reference included.
GoldenCheck profiles your data and identifies quality issues — missing values, format inconsistencies, outliers, and duplicates.
Note: In the funnel, GoldenCheck runs at the front of the pipeline — profiling each source as it lands so the matcher (GoldenMatch) gets clean input. Self-host it with
pip install goldencheck, or let the hosted Workbench run it for you.
Basic Usage
import goldencheck
report = goldencheck.profile("data.csv")
print(report.summary())
Try It
goldencheck demo
import goldencheck
report = goldencheck.profile("data.csv")
print(report.summary())Report Fields
| Metric | Description |
|---|---|
completeness | Percentage of non-null values per column |
uniqueness | Percentage of unique values per column |
consistency | Format consistency score |
validity | Values matching expected patterns |
outliers | Statistical outlier count |
Warning: Large files (>1M rows) may take several minutes to profile. Use
sample_sizeto profile a subset.
Was this page helpful?
Edit this page on GitHub