• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Jupyter pandas.DataFrame输出表格式配置

用户头像
it1352
帮助3

问题说明

默认情况下,我在哪里可以配置Jupyter使DataFrame对象显示为全边框表?

Where can I configure Jupyter to make a DataFrame object appear as a full-bordered table by default?

现在看起来像这样:

我希望它看起来像:

I wish it could look like:

正确答案

#1

您可以将以下代码添加到笔记本中,该代码将应用于当前笔记本中的所有单元格,而不管其输入了什么单元格:

You can add the following code to your notebook, which will apply to all cells in the current notebook regardless of what cell it's entered in:

%%HTML
<style type="text/css">
    table.dataframe td, table.dataframe th {
        border-style: solid;
    }
</style>

如果要将其应用于所有笔记本,则可以添加自定义config/css文件.有关如何执行此操作的答案,请参见 jupyterthemes ,具体取决于您要执行多少其他配置.

You might also want to explore jupyterthemes depending on how much other configuration you want to do.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcbgggh
系列文章
更多 icon
同类精品
更多 icon
继续加载