amazon

31.3.23

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>')