41. [Activity] Using DataFrames and DataSets
Activity
Looking At The Code
println("Let's select the name column:")
people.select("name").show() println("Filter out anyone over 21:")
people.filter(people("age") < 21).show()Last updated