This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case class User(firstName:String, lastName: String, age:Integer) | |
val users = Seq( | |
User("Sachin","Tendulkar",43), | |
User("Rahul","Dravid",43), | |
User("Virat","Kohli",27), | |
User("MahendraSingh","Dhoni",34) | |
) | |
val userDF = sc.parallelize(users).toDF() |
desc
function to order age in descending order
import org.apache.spark.sql.functions._
display(userDF.orderBy(desc("age")))
Now if i wanted to sort the data frame records using age in ascending order
display(userDF.orderBy(asc("age")))
This is sample of how to use the sum()
function
userDF.select(sum("age")).show
1 comment:
Nice blog Thank you.
Website Designing Internship Internship in Bangalore
Internship Program
Web Development Internship in Bangalore
Post a Comment