本文记录使用 jupyter notebook
的使用方法。
更新:2023 / 8 / 6
软件使用 | jupyter notebook 使用技巧大全
- 图片
- 表格
- 参考链接
图片
插入图片并控制大小和对其方式 1:
<img src="https://www.domain.com/image_file_name.jpg" alt="ImageFile" style="width: 500px;" align="left"/>
表格
在 jupyter
内创建表格有2种方式 2,
-
Markdown
| Stretch/Untouched | ProbDistribution | Accuracy |
| :- | -: | :-: |
| Stretched | Gaussian | .843
效果如下:
-
HTML
<table ><tr><th >Stretch/Untouched <th><th> ProbDistribution <th><th> Accuracy <tr><tr>
<tr><td> Stretched <td><td> Gaussian <td><td> .843 <td><tr><table>
效果如下:
参考链接
向jupyter notebook插入图片并控制大小和对齐方式 ↩︎
Tables in Markdown (in Jupyter) ↩︎