I have 3 columns in my data frame that I want to run my filter on.
Filter conditions:
<code>dataframe.filter(col(ID) =!= X) || col(y) =!= null || col (y) =!= col(z))
</code>
<code>dataframe.filter(col(ID) =!= X) || col(y) =!= null || col (y) =!= col(z))
</code>
dataframe.filter(col(ID) =!= X) || col(y) =!= null || col (y) =!= col(z))
Requirement is :
To exclude data from frame, if either of above conditions is true not any of above conditions is true.
How can i write that in spark scala
Regards
Bhanu