import [Link].
SparkSession
//val spark = SparkSession
.builder()
.appName("Spark SQL basic example")
.config("[Link]", "some-value")
.getOrCreate()
//create a Dataset using [Link] starting from 5 to 50, with increments of 5
val numDS = [Link](5, 50, 5)
//import [Link]._
[Link]()
// reverse the order and display first 5 items
[Link](desc("id")).show(5)
//compute descriptive stats and display them
[Link]().show()