Created
April 9, 2019 17:34
-
-
Save dipanjanS/1eb7f876b6d9df4ada367af4d54497df to your computer and use it in GitHub Desktop.
This file contains hidden or 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
paths_df = (logs_df | |
.groupBy('endpoint') | |
.count() | |
.sort('count', ascending=False).limit(20)) | |
paths_pd_df = paths_df.toPandas() | |
paths_pd_df |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment