软件使用 | jupyter notebook 使用技巧大全

本文记录使用 jupyter notebook 的使用方法。

更新:2023 / 8 / 19


软件使用 | jupyter notebook 使用技巧大全

  • 图片
    • 网络图片
    • 本地图片
  • 表格
  • 参考链接


图片

插入图片并控制大小和对其方式 123:


网络图片

ImageFile



本地图片

点击图片并按 enter 键进入编辑模式,左边小矩形变成绿色,在第一行下面再加一行 缩放的大小在 zoom: 的后面添加相应的缩放比例来控制。

同时需要去除第一行的感叹号和方括号 [] 内的文字,但是不能删除 2
在这里插入图片描述


表格

jupyter 内创建表格有2种方式 4

  • Markdown
| Stretch/Untouched | ProbDistribution | Accuracy |
| :- | -: | :-: |
| Stretched | Gaussian | .843

效果如下:
软件使用 | jupyter notebook 使用技巧大全_第1张图片

  • 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 使用技巧大全_第2张图片


参考链接


  1. 向jupyter notebook插入图片并控制大小和对齐方式 ↩︎

  2. 如何在Jupyter notebook里添加图片并缩放 ↩︎ ↩︎

  3. 180203 Jupyter Notebook and Markdown 插入图片位置并调整比例 ↩︎

  4. Tables in Markdown (in Jupyter) ↩︎

你可能感兴趣的:(jupyter,ide,python)