在没有索引的情况下打印 Pandas 数据帧并格式化日期时间
使用 Pandas 数据帧时,可能需要在没有索引的情况下打印数据帧。本文将演示如何打印没有索引的数据框,同时格式化日期时间列以仅显示时间。
考虑以下带有日期时间列的数据框:
User ID Enter Time Activity Number 0 123 2014-07-08 00:09:00 1411 1 123 2014-07-08 00:18:00 893 2 123 2014-07-08 00:49:00 1041
打印没有索引的数据框,使用 to_string() 方法,并将索引参数设置为 False:
<code class="python">print(df.to_string(index=False))</code>
这将输出:
User ID Enter Time Activity Number 123 00:09:00 1411 123 00:18:00 893 123 00:49:00 1041
此外,将日期时间列格式化为仅显示时间,使用 dt.time 访问器:
<code class="python">df['Enter Time'] = df['Enter Time'].dt.time</code>
这将就地修改数据框,并且日期时间列现在将仅显示时间:
User ID Enter Time Activity Number 0 123 00:09:00 1411 1 123 00:18:00 893 2 123 00:49:00 1041
现在,使用 to_string() 方法打印没有索引的数据帧将产生所需的输出:
User ID Enter Time Activity Number 123 00:09:00 1411 123 00:18:00 893 123 00:49:00 1041
以上是如何在没有索引和格式化日期时间列的情况下打印 Pandas DataFrame?的详细内容。更多信息请关注PHP中文网其他相关文章!