Last active
June 5, 2018 13:36
-
-
Save CristhianBoujon/8bda03412e7ec9029a36d953d54203f4 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.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