b4c872e41e4822cc7a982a92412fe96f139bfd96
python/jupyter/\345\207\272\345\212\233\343\201\256\343\202\271\343\202\257\343\203\255\343\203\274\343\203\253\343\202\222\347\234\201\347\225\245\343\201\231\343\202\213.md
... | ... | @@ -1,3 +1,11 @@ |
1 | 1 | [python - Disable iPython Notebook Autoscrolling - Stack Overflow](https://stackoverflow.com/questions/36757301/disable-ipython-notebook-autoscrolling) |
2 | 2 | |
3 | -`Cell` -> `All Outputs` -> `Toggle Scrolling` |
|
... | ... | \ No newline at end of file |
0 | +`Cell` -> `All Outputs` -> `Toggle Scrolling` |
|
1 | + |
|
2 | +もしくは、セルに以下を入力する。 |
|
3 | +``` |
|
4 | +%%javascript |
|
5 | +IPython.OutputArea.prototype._should_scroll = function(lines) { |
|
6 | + return false; |
|
7 | +} |
|
8 | +``` |
|
... | ... | \ No newline at end of file |