This is my code. I looked at the documentation but didn't find the answer.
import pandas as pd
import matplotlib.pyplot as plt
from datetime import datetime
avs = pd.read_csv('daily_2004_2014.csv')
avs = avs.set_index(pd.DatetimeIndex(avs['Date']))
fig = plt.figure()
avs.plot()
plt.show()