我用的是iPython笔记本。当我这样做的时候:
df
我得到一张漂亮的有细胞的桌子。然而,如果我这样做:
df1
df2
它不会打印第一个漂亮的表格。如果我这样做:
print df1
print df2
它以一种不同的格式打印表,这种格式将列溢出,并使输出非常高。
有没有办法强迫它为两个数据集打印出漂亮的表格?
我用的是iPython笔记本。当我这样做的时候:
df
我得到一张漂亮的有细胞的桌子。然而,如果我这样做:
df1
df2
它不会打印第一个漂亮的表格。如果我这样做:
print df1
print df2
它以一种不同的格式打印表,这种格式将列溢出,并使输出非常高。
有没有办法强迫它为两个数据集打印出漂亮的表格?
当前回答
显示列表中包含的数据帧。
dfs = [df1, df2]
display(*dfs)
其他回答
您可以使用markdown来创建一个表。如果表格包还不可用,系统会要求您首先安装它。
from IPython.display import display, Markdown
display(Markdown(df.to_markdown()))
from IPython.display import display
display(df) # OR
print df.to_html()
为了在Jupyter Notebook中显示DataFrame,只需输入:
display(Name_of_the_DataFrame)
例如:
display(df)
显示列表中包含的数据帧。
dfs = [df1, df2]
display(*dfs)
看起来你可以在显示中使用逗号来显示两个dfs。 我在github上的一些笔记本上注意到了这一点。这段代码来自杰克·范德普拉斯的笔记本。
class display(object):
"""Display HTML representation of multiple objects"""
template = """<div style="float: left; padding: 10px;">
<p style='font-family:"Courier New", Courier, monospace'>{0}</p>{1}
</div>"""
def __init__(self, *args):
self.args = args
def _repr_html_(self):
return '\n'.join(self.template.format(a, eval(a)._repr_html_())
for a in self.args)
def __repr__(self):
return '\n\n'.join(a + '\n' + repr(eval(a))
for a in self.args)
显示屏(df”、“df2”)