我使用print(df.head)显示宽度超过114个字符的pandas表。使用pd.set_option('display.max_columns',500)将pandas列宽设置为500。但是jupytr将这条线包裹起来大约114个字符。我尝试使用下面的代码设置最大宽度,但似乎不会影响宽度。
%%html
<style>
.output_wrapper, .output {
height:auto !important;
max-height:1000px; /* your desired max-height here */
max-width: 1000px;
}
.output_scroll {
box-shadow:none !important;
webkit-box-shadow:none !important;
}
</style>
答案 0 :(得分:0)
专门用于大熊猫,例如,应该打印出320个字符
desired_width = 320
pd.set_option('display.width', desired_width)
pd.set_option("display.max_columns", 10)