Jupyter中数据帧的相当输出

时间:2015-08-07 15:54:23

标签: pandas ipython ipython-notebook jupyter

我在远程ubuntu和本地osx上安装了两个iPython笔记本。当我尝试输出pandas数据帧时,我得到了不同的输出。见截图。

Jupyter (ubuntu): IPython (osx):

我想在jupyter中使用ubuntu上的漂亮表格。

我该怎么办?我经常搜索,但一无所获。

3 个答案:

答案 0 :(得分:6)

除上述内容外,还有另一个不错的工具[IpyTable][1]

# create dummy data:
import pandas as pd
from numpy.random import randn, randint
df = pd.DataFrame({'a': randn(1000), 'b': randn(1000),'N': randint(100, 1000, (1000)), 'x': 'x'})

from ipy_table import make_table, set_row_style
#apply_theme('basic')
table = make_table(df[0:10].values.tolist(), len(df.columns))
set_row_style(0, color='lightGreen')
table

enter image description here

答案 1 :(得分:0)

通过pip解决了干净的新装置到virtualenv。

答案 2 :(得分:0)

此代码对我有用:

govendor get ./...