Reputation: 1557
I am trying to get my head around matplotlib's state machine model, but I am running into an error when trying to plot multiple lines on a single plot. From what I understand, the following code should produce a single plot with two lines:
import pandas as pd
import pandas.io.data as web
aapl = web.get_data_yahoo('AAPL', '1/1/2005')
# extract adjusted close
adj_close = aapl.loc[:, ['Adj Close']]
# 2 lines on one plot
hold(False)
adj_close.resample('M', how='min').plot()
adj_close.resample('M', how='max').plot()
In fact, I get three figures: first a blank one, and then two with one line each.
Any idea what I am doing wrong or what setting on my system might be misconfigured?
Upvotes: 7
Views: 14748
Reputation: 415
You can pre-create an axis object using matplotlibs pyplot
package and then append the plots to this axis object:
import pandas as pd
import pandas.io.data as web
import matplotlib.pyplot as plt
aapl = web.get_data_yahoo('AAPL', '1/1/2005')
# extract adjusted close
adj_close = aapl.loc[:, ['Adj Close']]
# 2 lines on one plot
#hold(False)
fig, ax = plt.subplots(1, 1)
adj_close.resample('M', how='min').plot(ax=ax)
adj_close.resample('M', how='max').plot(ax=ax)
Alternatively, you could concat the two series into a m x 2 DataFrame and plot the dataframe instead:
s1 = adj_close.resample('M', how='min')
s2 = adj_close.resample('M', how='max')
df = pd.concat([s1, s2], axis=1)
df.plot()
Upvotes: 13