美文网首页
jupyter 数据显示技巧

jupyter 数据显示技巧

作者: 不在隔壁的王二叔 | 来源:发表于2018-08-24 10:35 被阅读0次

jupyter:

1. 显示数据时不要出滚动条, 全部平铺下来,方便观察数据

%%javascript

IPython.OutputArea.prototype._should_scroll = function(lines) {

    return false;

}

2. 显示数据时不要将某栏目的数据缩略, 有多少数据显示多少数据

pd.set_option('display.max_colwidth', -1)

# pd.set_option('display.max_rows', 2000)

相关文章

网友评论

      本文标题:jupyter 数据显示技巧

      本文链接:https://www.haomeiwen.com/subject/brcbiftx.html