2016-12-27 5 views
1

私はこのスクリプトをcustom.jsに挿入しようとしています。私はすべての負の通貨を赤色に変更します。Jupyterにjavascriptコードを挿入するには

Jupyterで印刷されたすべてのパンダのデータフレームに適用します。 jupyter/anacondaフォルダにあるすべてのcustom.jsに追加した後も、何も変更されませんでした。誰か助けてくれますか?

var allTableCells = document.getElementsByTagName("td"); 
for(var i = 0, max = allTableCells.length; i < max; i++) { 
    var node = allTableCells[i]; 

    //get the text from the first child node - which should be a text node 
    var currentText = node.childNodes[0].nodeValue; 

    //check for 'one' and assign this table cell's background color accordingly 
    if (currentText.includes("$ -")) 
     node.style.color = "red"; 
} 

答えて

2

use the jupyter javascript magic

%%javascript 
var allTableCells = document.getElementsByTagName("td"); 
for(var i = 0, max = allTableCells.length; i < max; i++) { 
    var node = allTableCells[i]; 

    //get the text from the first child node - which should be a text node 
    var currentText = node.childNodes[0].nodeValue; 

    //check for 'one' and assign this table cell's background color accordingly 
    if (currentText.includes("$ -")) 
     node.style.color = "red"; 
} 
+0

ありがとう!それは私が最後のセルに置くように動作します。 jupyterがセルを実行するたびにこのスクリプトをロードすることは可能でしょうか? – nicmano

関連する問題