我的df输出看起来像这样:
'Datetime' 'Date' 'Time'
1 2017-02-24 12:24:11 2017-02-24 12:24:11
2 2017-03-11 12:13:01 2017-03-11 12:13:01
是否可以移动时间'列,以便所有三列并排?这可能是“时代”的原因。列显示在其他两列之下?
(它可能与datetime.date()
或datetime.time()
提取数据的方式有关吗?或者可能必须删除\
字符?)
答案 0 :(得分:1)
实际上,您的输出没有问题。我认为您正在使用print语句,您可以看到\
将datetime
和date
与time
分开。这只是pandas
报告您的输出适合屏幕的方式。实际上所有column headers
都在同一条线上。
此外,pandas仅显示打印输出或控制台中的选定行数/列数。如果您需要调整它们,可以按照以下答案:Python pandas, how to widen output display to see more columns?