Aplica a função f a toda a linha deste DataFrame
# Applies the f function to all Row of this DataFrame
def f(person):
print(person.name)
df.foreach(f)
Ethercourt.ml
# Applies the f function to all Row of this DataFrame
def f(person):
print(person.name)
df.foreach(f)