Emacs 放大从ob ipython输出的图像

Emacs 放大从ob ipython输出的图像,emacs,org-mode,Emacs,Org Mode,我在书中读到这样一个例子 得到结果: 显示的图像非常小,如何通过修改ipython的配置来放大图像?可能的重复 #+begin_src ipython :session alinbx :results raw drawer ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000)) ts = ts.cumsum() ts.plot() #+end_

我在书中读到这样一个例子

得到结果:

显示的图像非常小,如何通过修改ipython的配置来放大图像?

可能的重复
#+begin_src ipython :session alinbx :results raw drawer
 ts = pd.Series(np.random.randn(1000),
                index=pd.date_range('1/1/2000', periods=1000))
 ts = ts.cumsum()
 ts.plot()
#+end_src