Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディスクに画像があり、R Jupyter Notebook のマークダウン セルに表示したいと考えています。これについてどうすればよいですか?
Python では、これはディスプレイから Image クラスをインポートするのと同じくらい簡単です。
IRdisplayには、画像を含む「もの」を豊富に表示する機能があります。
library("IRdisplay") display_png(file="plot.png)
Jupyter Python ノートブックで通常行うように、マークダウン セルで次のようにします。
<img src="../relative/path/to/img.png">
また
