Created
July 10, 2019 18:54
-
-
Save itsderek23/3e81a9294aff1dffba72e2111f6d8d42 to your computer and use it in GitHub Desktop.
SERP Analysis - Top 10 Queries by Click
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
top_queries_by_clicks = (df_by_query | |
.sort_values("clicks", ascending=False) | |
.head(10) | |
.index.values | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment