Created
July 28, 2021 18:20
-
-
Save DerekHawkins/7078e3280d59d6b50c44768aced41573 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
pivot = log_file.pivot_table(index='date', values='server_response', | |
aggfunc={'server_response':'count'}).rename(columns={'server_response':'crawls'}) | |
fig = go.Figure(data=go.Scatter(x=pivot.index, y=pivot.crawls, mode='lines')) | |
fig.update_layout(title='Crawl Rate: example.com', | |
xaxis_title='Date', | |
yaxis_title='Number of Pings by Search Engine') | |
fig.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment