This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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