Created
January 13, 2020 03:54
-
-
Save lakshay-arora/03025076fc25de99490c28f553516739 to your computer and use it in GitHub Desktop.
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
# register temporary table | |
data_frame.registerTempTable('sample') | |
# get the value count using the sql query | |
gender = sql_context.sql(" SELECT gender, count(*) as freq from sample GROUP BY gender ") | |
# view the results | |
gender.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment