Jupyter:pandas相当描述函数包含if语句不可能?

时间:2017-03-14 17:33:55

标签: pandas jupyter-notebook jupyter

我发现这个有用的pandas描述了我可以这样使用的功能: pandas describe function working

我的代码现在混乱了元信息,我想介绍一个带有调试元信息的调试版本和一个只培训我的NN的调试版本。只需通过布尔开关。但我发现像pandas describe这样的命令在包含在if语句中时不会产生输出 pandas describe function wrapped in if statement not working

到目前为止,我发现的唯一解决方法是将其包装在打印功能中。它导致丑陋但正确的输出 working but ugly workaround

为什么这样或我做错了什么?

1 个答案:

答案 0 :(得分:1)

您可以使用displayHTML来获得所需内容。

from IPython.core.display import display, HTML

df = pd.DataFrame(dict(A=[1, 2], B=[3, 4]))

if True:
    display(HTML(df.to_html()))

enter image description here