Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 622 Bytes

File metadata and controls

26 lines (18 loc) · 622 Bytes

Returns DataFrame with rows that satisfy row condition

Related operations:

df.filter { age > 18 && name.firstName.startsWith("A") }
df.filter { "age"<Int>() > 18 && "name"["firstName"]<String>().startsWith("A") }