2013-08-05 141 views
2

希望我期待用熊貓和IPython都返回了一些,我想複製和粘貼HTML嵌入代碼。格式問題/大熊貓

的問題是,輸出被裁剪。如何更改設置,以便我可以看到完整的結果?

下面是一個例子:

<h2>Evil Trent</h2><iframe width="560" height=... 

如果我選擇使用df.ix [0]你可以看到完整的結果個體元素。

<h2>Evil Trent</h2><iframe width="560" height="315" src="//www.youtube.com/embed/qvX8cfMUPqg" frameborder="0" allowfullscreen></iframe><p>Published by Evan Leonard on Monday August 05.</p> 

我想什麼是看到輸出的其餘部分。在Chrome上的IPython中,這是一個簡單的設置問題嗎?

回答

3

嘗試設置option.display.max_colwidth更大的東西:

In [11]: df 
Out[11]: 
                0 
0 <h2>Evil Trent</h2><iframe width="560" height=... 

In [12]: pd.options.display.max_colwidth 
Out[12]: 50 

增加到200似乎做它:

In [13]: pd.options.display.max_colwidth = 200 

In [14]: df 
Out[14]: 
                                                   0 
0 <h2>Evil Trent</h2><iframe width="560" height="315" src="//www.youtube.com/embed/qvX8cfMUPqg" frameborder="0" allowfullscreen></iframe><p>Published by Evan Leonard on Monday August 05.</p> 

"working with package options" section of the docs

+0

輝煌。我再次感謝你。 – elksie5000