Skip to content

Instantly share code, notes, and snippets.

@lakshay-arora
Created January 13, 2020 03:57
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 lakshay-arora/c2daf526af67398023234c51934b5693 to your computer and use it in GitHub Desktop.
Save lakshay-arora/c2daf526af67398023234c51934b5693 to your computer and use it in GitHub Desktop.
# average age city wise
average_age = sql_context.sql(" SELECT city, AVG(age) as average_age from sample GROUP BY city ")
# view the results
average_age.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment