回答

1

~/.jupyter/custom/custom.js(避免纏繞 - 水平滾動):

$([IPython.events]).on('app_initialized.NotebookApp', function(){ 
    IPython.CodeCell.options_default['cm_config']['lineWrapping'] = true; 
}); 

而且在~/.jupyter/custom/custom.css加入這個(使用所有寬度):

.container { width:100% !important; } 
pre, code, kbd, samp { 
    white-space: pre; 
} 

這兩個技巧有助於使星火SQL DataFrame show()方法通過對齊列來有效地殺死自動換行併爲視圖提供更多寬度,使其更具「可口性」。如果這些文件不存在,請嘗試創建它們。

+0

BTW-這看起來像一個Jupyter問題與Apache Toree問題。 Jupyter對筆記本顯示器承擔更多責任。 – codeaperature