# Execute this cell to remove the first column of dataframe tables (to remove index column)
from IPython.core.display import HTML
HTML("""
<style>
table.dataframe thead th:first-child {
display: none;
}
table.dataframe tbody th {
display: none;
}
</style>
""")
8条答案
按热度按时间kmbjn2e31#
正如@waitingkuo所指出的,index=False是你所需要的,如果你想在你的ipython笔记本中保持漂亮的表格布局,你可以用途:
mklgxw1f2#
从v. 0.17.1开始,可以通过styling隐藏索引,请参见隐藏索引或列:如果
df
是您的数据框,则只需请注意,样式只在笔记本电脑中有效,在LaTeX转换中无效。
py49o6xq3#
设置
index=False
对于ipython笔记本:
对于乳胶:
pqwbnv8z4#
我把下面的单元格添加到我的笔记本中,它在Jupyter 4.0.2中运行良好。
注:即使没有索引,它也会删除“any”表的第一列。
w8biq8rn5#
你试试这个代码,可能会有帮助。
66bbxpm56#
设置
index=False
。例如:
这会有用的。
nimxete27#
样式.hide_index自Pandas 1.4起已不再使用。对于那些想知道如何在带有最新Pandas的笔记本中隐藏索引的用户,请使用用途:
f0brbegy8#
试试看
否则,您将看到:
参见DEPR REF: hide(axis=..) replaces hide_index and hide_columns #43771