How to make inline plots in Jupyter Notebook larger?

后端 未结 9 1581
慢半拍i
慢半拍i 2020-12-12 08:38

I have made my plots inline on my Ipython Notebook with \"%matplotlib inline.\"

Now, the plot appears. However, it is very small. Is there a way to ma

9条回答
  •  自闭症患者
    2020-12-12 09:09

    The question is about matplotlib, but for the sake of any R users that end up here given the language-agnostic title:

    If you're using an R kernel, just use:

    options(repr.plot.width=4, repr.plot.height=3)
    

提交回复
热议问题