canimus/cuallee

how to use it on pandas dataframe

hardiktalati opened this issue · 2 comments

would it be possible to add example on using with pandas dataframe

pandas dataframe without spark session

Here it goes @hardiktalati

from cuallee import Check, CheckLevel
import pandas as pd
df = pd.DataFrame({"A": [1,2,3,4,5]})
check = Check(CheckLevel.WARNING, "Complete")
check.is_complete("A")
check.validate(df)