Skip to content

Instantly share code, notes, and snippets.

@fabclmnt
Created September 23, 2021 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabclmnt/07c42e32fc7a630013c6a22bb32a8608 to your computer and use it in GitHub Desktop.
Save fabclmnt/07c42e32fc7a630013c6a22bb32a8608 to your computer and use it in GitHub Desktop.
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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment