最佳答案
我有一个问题,查看以下DataFrame
:
n = 100
foo = DataFrame(index=range(n))
foo['floats'] = np.random.randn(n)
foo
问题是它不会在ipython notebook中按默认值打印所有行,但我必须切片才能查看结果行。即使下面的选项也不会改变输出:
pd.set_option('display.max_rows', 500)
有人知道如何显示整个数组吗?