Answers for "where conditions to dataframe scala"

0

where conditions to dataframe scala

df.where("person_country = 'Cuba'").explain()
df.where($"person_country" === "Cuba").explain()
df.where('person_country === "Cuba").explain()
df.filter("person_country = 'Cuba'").explain()
Posted by: Guest on March-22-2022

Code answers related to "where conditions to dataframe scala"

Browse Popular Code Answers by Language