Applique la fonction F à toutes les lignes de ce DataFrame

# Applies the f function to all Row of this DataFrame

def f(person):
  print(person.name)
df.foreach(f)
Ethercourt.ml