2

希望我希望使用 pandas 和 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 中的一个简单设置问题吗?

4

1 回答 1

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>

请参阅文档的“使用包选项”部分

于 2013-08-05T21:08:48.780 回答