how to use it on pandas dataframe
hardiktalati opened this issue · 2 comments
hardiktalati commented
would it be possible to add example on using with pandas dataframe
hardiktalati commented
pandas dataframe without spark session
canimus commented
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)