For example, in the same cell, I want to output both the table and the histogram:
df.sort('speed',ascending=False).head(20)
bins=np.arange(-15, 15 + 1, 1)
df['incre'].hist(bins=bins)
But the table won't be outputed. I change it into:
print df.sort('speed',ascending=False).head(20)
bins=np.arange(-15, 15 + 1, 1)
df['incre'].hist(bins=bins)
It can return the table and the histogram, but the style of the table is lost:

So, how can I output multiple result without losing their style?
df.sort('speed',ascending=False).head(20)to be the last statement?