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
#!/usr/bin/env python | |
# coding: utf-8 | |
# ### Time Series Analysis: Background | |
# This dataset is part of a Kaggle project in which the goal is to predict the page views for 145k Wikipedia pages. Each row represents an article and spans from summer of 2015 to the end of 2016. I've already written a function to parse out the article name, language, and access type of each record. The goal of the interview will be to write a function that finds the top 5 articles per language and plots them, as an exercise in exploratory visualization. | |
# In[73]: | |
import pandas as pd |