Created
June 7, 2018 18:33
-
-
Save CristhianBoujon/4cd4a17320819af392dcf751b091e64a 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
import pandas as pd | |
import matplotlib.pyplot as plt | |
ads_report = pd.read_csv('ads_report_by_categories.csv', parse_dates=["date"], index_col='date') | |
ads_report.plot() | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment