Skip to content

Commit

Permalink
fix papaers
Browse files Browse the repository at this point in the history
  • Loading branch information
canimus committed Mar 9, 2024
1 parent 2732718 commit f112c8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cuallee/pandas_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def is_contained_in(self, rule: Rule, dataframe: pd.DataFrame) -> Union[bool, in

def not_contained_in(self, rule: Rule, dataframe: pd.DataFrame) -> Union[bool, int]:
return (
(dataframe.loc[:, rule.column].isin(rule.value) == False).astype(int).sum()
(dataframe.loc[:, rule.column].isin(rule.value) is False).astype(int).sum()
)

def has_percentile(self, rule: Rule, dataframe: pd.DataFrame) -> Union[bool, int]:
Expand Down
10 changes: 6 additions & 4 deletions paper/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ title: 'Cuallee: A Python package for data quality across multiple DataFrame API
tags:
- Python
- data quality
- unit testing
- data checks
- data unit test
- data observability
- data lake
- pyspark
- snowpark
- duckdb
- pandas
- snowpark
- polars
- duckdb
- big data
- distributing computing
authors:
- name: Herminio Vazquez
orcid: 0000-0003-1937-8006
Expand Down

0 comments on commit f112c8e

Please sign in to comment.