gpt4 book ai didi

python - 如何在 jupyter notebook 中将整个 pandas 数据框右移?

转载 作者:行者123 更新时间:2023-12-04 01:09:23 27 4
gpt4 key购买 nike

当 jupyter notebook/lab 显示数据框时,它始终是左对齐的。我想将整个数据帧结构位置移动到右侧的某些单元。我必须添加什么代码才能获得所需的更改(即移动我的数据框位置)?

enter image description here

最佳答案

只需检查元素。元素是 Out[]: output_subarea

编写自己的 CSS。

尝试:

from IPython.display import display, HTML

CSS = """
.output_subarea {
margin-left:100px;
}
"""

HTML('<style>{}</style>'.format(CSS))

display(df)

enter image description here

更新:

这样做(在一个单元格中定义它们):

display(HTML('<style>{}</style>'.format(CSS)))
display(df)

关于python - 如何在 jupyter notebook 中将整个 pandas 数据框右移?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65343760/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com