I am trying to filter a DataFrame by keeping only those rows that have a certain string column non-empty.
The operation is the following:
df.filter($\"st
Use =!= as a replacement:
=!=
df.filter($"stringColumn" =!= "")