For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Resizing plot() inside Jupyter notebook
-
I'm running cerebro inside a jupyter notebook. When I try to plot the resulting plot is completely squashed as you can see below. I am passing in
iplot=False
and also have%matplotlib
at the top of my notebook. I've also tried%matplotlib inline
which makes it worse. -
-
plt.rcParams['font.sans-serif']=['SimHei'] plt.rcParams['axes.unicode_minus']=False plt.rcParams['figure.figsize']=[18, 16] plt.rcParams['figure.dpi']=200 plt.rcParams['figure.facecolor']='w' plt.rcParams['figure.edgecolor']='k' cerebro.plot(iplot=False)