Perform the same type of check on different columns. #179
Unanswered
gracemiguel
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I want to perform the hasCompleteness multiple times on different columns with different assertions. When I do this within the same check object, the last hasCompleteness check overrides all the previous checks so only the most recent is depicted in the VerificationResult dataframe. Is there a workaround to allow all of these checks to be reflected in the resulting dataframe? I do not want to create a new check object. Below is an example of the parameters with the two checks.
df': { 'has_completeness': {'columns': ['MANDT', 'MATNR', 'WERKS', 'LGORT', 'SOBKZ', 'LIFNR'], 'acceptance_value': 0.99 }, 'size': 1, 'has_completeness': { 'columns': ['CHARG'], 'acceptance_value': 0.43 },
Beta Was this translation helpful? Give feedback.
All reactions