Skip to content

Instantly share code, notes, and snippets.

@NeerajBhadani
Created May 25, 2020 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NeerajBhadani/d4f41b895a1a8258a63af2e00d69aafb to your computer and use it in GitHub Desktop.
Save NeerajBhadani/d4f41b895a1a8258a63af2e00d69aafb to your computer and use it in GitHub Desktop.
cume_dist
val winSpec = Window.partitionBy("depName").orderBy("salary")
val cume_dist_df =
empsalary.withColumn("cume_dist",cume_dist().over(winSpec))
cume_dist_df.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment