amazon

31.3.23

RをJupyterで使うときのグラフのサイズを指定する

 

library(repr)
options(repr.plot.width=6, repr.plot.height=4)

30.3.23

Jupyter Notebookの出力セルの幅を100%に拡張する

 

Pythonの場合
from IPython.core.display import HTML
display(HTML('<style>.container {width:100% !important;}</style>'))

Rの場合
library(IRdisplay)
display_html('<style>.container {width:100% !important;}</style>')