10
A
回答
1
執行此操作的一種方法是使用自定義預處理器。
我解釋如何做到這一點簡單地響應Simple way to choose which cells to run in ipython notebook during run all。
總結:可以延長nbconvert.preprocessors.ExecutePreprocessor
創建檢查細胞元數據來確定該小區是否應執行和/或輸出的預處理器。
我用Jupyter筆記本電腦,用於生成報告的時候,所以我寫了定製處理器的集合來擴展nbconvert行爲:
- 元語言,以確定獲得在最終報告中執行了什麼細胞,包括( if/else邏輯在整個筆記本部分)
- 在降價單元中執行代碼
- 從輸出中刪除代碼單元。
- 採取輸入參數從命令行
我還沒來得及在分配擴展包這些,但你可以在這裏看到的代碼:https://gist.github.com/brazilbean/3ebb31324f6dad212817b3663c7a0219。
請隨意使用/修改/做偉大,事情過了這些例子。 :)
相關問題
- 1. 在anaconda ipython筆記本命令打開jupyter筆記本?
- 2. Ipython筆記本(jupyter),opencv(cv2)和繪圖?
- 3. 出口jupyter ipython筆記本到pdf
- 4. 加載IPython Jupyter筆記本時出錯:
- 5. 恢復刪除的ipython/jupyter筆記本?
- 6. Jupyter/iPython筆記本的根訪問
- 7. 從URL加載iPython/Jupyter筆記本
- 8. Jupyter(IPython的筆記本),隱藏加載
- 9. Ipyton筆記本/ jupyter
- 10. 在Jupyter筆記本
- 11. jupyter: '筆記本' 不是Jupyter命令
- 12. 不能在Jupyter筆記本
- 13. 開始jupyter筆記本10
- 14. FileNotFoundError而在Jupyter筆記本
- 15. 無法在IPython/Jupyter筆記本中使用python-weka-wrapper
- 16. 如何在ipython(jupyter)筆記本中顯示每行圖片?
- 17. R在jupyter(IPython筆記本)中沒有生成數字
- 18. 在iPython(Jupyter)筆記本中滾動代碼窗口?
- 19. 在ipython/Jupyter筆記本中導入scikit-learn
- 20. 在ipython/jupyter筆記本中註冊內核 - kernel.json
- 21. 在Jupyter/IPython筆記本中使用Bokeh圖表交互
- 22. 如何在Jupyter Ipython筆記本中註釋多行?
- 23. 在R jupyter筆記本中使用ipython magics?
- 24. Jupyter/Ipython筆記本在執行過程中自動保存
- 25. 在IPython/Jupyter筆記本中顯示行號
- 26. 在Pandas/iPython筆記本(Jupyter)的DataFrame /表中的GROUP BY行?
- 27. 閱讀圖像中Jupyter筆記本Jupyter筆記本
- 28. Jupyter筆記本失敗當我jupyter筆記本運行%qtconsole跑%qtconsole
- 29. ipywidgets jupyter筆記本
- 30. 如何以編程方式保存Jupyter筆記本(iPython筆記本)?
我有同樣的問題:有沒有出口IPython的細胞的選擇的子集,例如創建摘要HTML報告的方法嗎? – Stefaan
見在有關的討論和選項[隱藏輸入細胞·問題#534·jupyter /筆記本](https://github.com/jupyter/notebook/issues/534) – nealmcb
此外,請參閱http://stackoverflow.com/questions/26494747 /簡單的方式對選擇 - 這細胞對運行在-IPython的筆記本 - 在 - 運行 - 所有 –