ARTICLE AD BOX
I am using the python package pointblank.
There is a function row_count_match() that can check that a dataframe matches the expected number of rows.
( pb.Validate(data=pb.load_dataset(dataset="small_table"), label="Example Validation") .row_count_match(count=42) .interrogate() )However, I did not find a way to set it between two different values, or above or below a given value.
Ideally something like this:
How to do so in pointblank?
