Dataframe
 
0.15

Get rows

Edit page Last modified: 14 January 2025

Get single DataRow by index:

Get single DataRow by row condition:

df.single { age == 45 }
df.first { weight != null }
df.minBy { age }
df.maxBy { name.firstName.length }
df.maxByOrNull { weight }