Stosuje funkcję f do całego wiersza tego ramki danych
# 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)