Replies: 1 comment
-
I see that a similar question was raised in #978, so I'll take that as a reference. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to implement a check for validating that a pair of columns have a 1-1 relationship, that is, the values in column a should have only one value in column b.
The following dataframe is valid because each value of column a has the same value in column b even though the rows are repeated.
I tried to use the joint uniqueness parameter, but it checks at a row level. I also tried implementing a dataframelevel check which does work, however, it does not tell me how many rows have failed. Is there a way to get this implemented?
Beta Was this translation helpful? Give feedback.
All reactions