Skip to content

Instantly share code, notes, and snippets.

@itsderek23
Created July 10, 2019 18:54
Show Gist options
  • Save itsderek23/3e81a9294aff1dffba72e2111f6d8d42 to your computer and use it in GitHub Desktop.
Save itsderek23/3e81a9294aff1dffba72e2111f6d8d42 to your computer and use it in GitHub Desktop.
SERP Analysis - Top 10 Queries by Click
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