有人知道是否有可能告诉python在输出中显示多个摘要统计表吗?
这是我的输入内容
efw2016_mc.describe()
efw1990_mc.describe()
efw1970_mc.describe()
但是输出仅显示其中一张表。可以同时显示所有三个输出吗?
答案 0 :(得分:2)
假设您正在使用Jupyter笔记本,则可以使用display()
:
display(efw2016_mc.describe())
display(efw1990_mc.describe())
display(efw1970_mc.describe())
或使用concat()制作一个数据框:
a = efw2016_mc.describe()
b = efw1990_mc.describe()
c = efw1970_mc.describe()
df = pd.concat([a,b,c])
df