0

How can I change pandas_profiling's report width size? now at jupyther lab/notebook other cells are fit to the monitor width but the pandas_profiling's report's width is narrow.

enter image description here

4

1 回答 1

1

pandas_profiling版本 2 开始,您可以指示包缩放到全宽。

对此的具体代码是:

df.profile_report(style={'full_width':True})

(或者pandas_profiling.ProfileReport(style={'full_width':True})如果你喜欢)

于 2019-07-04T19:29:27.573 回答