Can anyone explain why the graph from the pandas plot doesn't display any of the numbers from the dataframe?
b = df_trend.ask[:10]
print b
0 100.86
2 100.85
3 100.84
4 100.84
5 100.85
7 100.85
9 100.85
11 100.84
12 100.85
14 100.85
Name: ask, dtype: float64
Output of the graph from using the plot method looks like this
b.plot()