Returns DataFrame with rows that satisfy row condition
df.filter { age > 18 && name.firstName.startsWith("A") }df.filter { "age"<Int>() > 18 && "name"["firstName"]<String>().startsWith("A") }
Returns DataFrame with rows that satisfy row condition
df.filter { age > 18 && name.firstName.startsWith("A") }df.filter { "age"<Int>() > 18 && "name"["firstName"]<String>().startsWith("A") }