I'm playing with ipython notebook and I got a problem.
This code %matplotlib inline
helped me to plot inline with the code below.
%matplotlib inline
ax1= plt.subplot(2,1,1)
ax1.plot(df.Close,label="sp500")
ax1.plot(ma,label='50MA')
plt.legend()
ax2=plt.subplot(2,1,2, sharex = ax1)
ax2.plot(df['H-L'],label='H-L')
plt.legend()
However, I cannot plot inline with the code below.
%matplotlib inline
def single_stock(stock_name):
df = pd.read_csv('stocks_date_modified.csv',index_col='time',parse_dates=True)
df = df[df.type == stock_name.lower()]
_500MA= pd.rolling_mean(df['value'],500)
ax1= plt.subplot(2,1,1)
df['close'].plot(label='Price')
plt.legend()
ax2= plt.subplot(2,1,2, sharex = ax1)
_500MA.plot(label='500MA')
plt.legend()
plt.show()
single_stock('bac')
I got an error message saying
UsageError: unrecognized arguments: #this code is to plot inline the notebook
Without the %matplotlib inline
I don't have problem showing the plots but in the popup window.
Could someone help me to solve this?