1. <legend id='bKvrN'><style id='bKvrN'><dir id='bKvrN'><q id='bKvrN'></q></dir></style></legend>

        <bdo id='bKvrN'></bdo><ul id='bKvrN'></ul>
    1. <small id='bKvrN'></small><noframes id='bKvrN'>

      <i id='bKvrN'><tr id='bKvrN'><dt id='bKvrN'><q id='bKvrN'><span id='bKvrN'><b id='bKvrN'><form id='bKvrN'><ins id='bKvrN'></ins><ul id='bKvrN'></ul><sub id='bKvrN'></sub></form><legend id='bKvrN'></legend><bdo id='bKvrN'><pre id='bKvrN'><center id='bKvrN'></center></pre></bdo></b><th id='bKvrN'></th></span></q></dt></tr></i><div id='bKvrN'><tfoot id='bKvrN'></tfoot><dl id='bKvrN'><fieldset id='bKvrN'></fieldset></dl></div>
      <tfoot id='bKvrN'></tfoot>

      使用python中的pandas解析年月日和小时在不同列中

      时间:2023-09-14
        <tbody id='PbGlh'></tbody>

          <small id='PbGlh'></small><noframes id='PbGlh'>

          <legend id='PbGlh'><style id='PbGlh'><dir id='PbGlh'><q id='PbGlh'></q></dir></style></legend>
            <bdo id='PbGlh'></bdo><ul id='PbGlh'></ul>

            <tfoot id='PbGlh'></tfoot>

            <i id='PbGlh'><tr id='PbGlh'><dt id='PbGlh'><q id='PbGlh'><span id='PbGlh'><b id='PbGlh'><form id='PbGlh'><ins id='PbGlh'></ins><ul id='PbGlh'></ul><sub id='PbGlh'></sub></form><legend id='PbGlh'></legend><bdo id='PbGlh'><pre id='PbGlh'><center id='PbGlh'></center></pre></bdo></b><th id='PbGlh'></th></span></q></dt></tr></i><div id='PbGlh'><tfoot id='PbGlh'></tfoot><dl id='PbGlh'><fieldset id='PbGlh'></fieldset></dl></div>

                本文介绍了使用python中的pandas解析年月日和小时在不同列中的日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                看完之后在 YYYYMMDD 时解析日期和 HH 在 Python 中使用 pandas 在单独的列中和使用pythonpandas 以年、日、小时、分钟、秒格式解析 CSV

                我仍然无法解析带有年、月、日和小时分隔列的日期.我的数据是这样的(第 0 列是 ID,第 1 列是年,第 2 列是月,第 3 列是天,第 4 列是小时,第 5 列是值)

                I still am not able to parse dates with separated columns for year, month, day and hour. My data looks like this (zeroth column is ID, first is year, second is month, third is day, fourth is hour and fifth is value)

                50136   2011    1   1   21  9792    
                50136   2011    1   1   22  9794    
                50136   2011    1   1   23  9796    
                50136   2011    1   1   0   9798    
                50136   2011    1   1   1   9799    
                50136   2011    1   1   2   9802
                

                我尝试过以下操作:df = pd.read_csv(file, parse_dates = {'date': [1, 2, 3, 4]}, , index_col='date'),但是我得到的索引不是时间戳,而是作为 unicode(?)

                I've tried following: df = pd.read_csv(file, parse_dates = {'date': [1, 2, 3, 4]}, , index_col='date'), but then I get index not as timestamp but as unicode(?)

                In  [17]: print df.head()
                Out [17]:
                                 0     5
                date                    
                2011 1 1 21  50136  9792
                2011 1 1 22  50136  9794
                2011 1 1 23  50136  9796
                2011 1 1 0   50136  9798
                2011 1 1 1   50136  9799
                
                In  [18]: print df.index
                Out [18]:
                Index([u'2011 1 1 21', u'2011 1 1 22', u'2011 1 1 23', u'2011 1 1 0', u'2011 1 1 1', u'2011 1 1 2'], dtype=object)
                

                我显然做错了什么,但我无法弄清楚.任何建议都非常感谢.

                I'm obviously doing something wrong, but I can't figure it out. Any advise is really appreciated.

                推荐答案

                如果常规方法不起作用,您总是可以退回到编写自己的解析器.创建一个函数,它接受来自 parse_dates 的列并返回一个 datetime 并使用 date_parser 添加该函数.

                If the regular methods dont work you can always fallback on writing your own parser. Make a function which accepts the columns from parse_dates and returns a datetime and add that functions with date_parser.

                比如:

                df = pd.read_csv(file, header=None, index_col='datetime', 
                                 parse_dates={'datetime': [1,2,3,4]}, 
                                 date_parser=lambda x: pd.datetime.strptime(x, '%Y %m %d %H'))
                

                返回:

                                         0     5
                datetime                        
                2011-01-01 21:00:00  50136  9792
                2011-01-01 22:00:00  50136  9794
                2011-01-01 23:00:00  50136  9796
                2011-01-01 00:00:00  50136  9798
                2011-01-01 01:00:00  50136  9799
                2011-01-01 02:00:00  50136  9802
                

                如果你把它写成普通函数而不是 lambda,也许会更清楚:

                edit:

                Perhaps its more clear if you write it like a normal function instead of a lambda:

                def dt_parse(date_string):
                
                    dt = pd.datetime.strptime(date_string, '%Y %m %d %H')
                
                    return dt
                

                这篇关于使用python中的pandas解析年月日和小时在不同列中的日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何使用带有 Pandas 的时间戳按小时对数据帧进行 下一篇:无法使用 Series 内置函数对时间戳应用方法

                相关文章

                最新文章

                  <bdo id='WOw8Q'></bdo><ul id='WOw8Q'></ul>

                <small id='WOw8Q'></small><noframes id='WOw8Q'>

                  <tfoot id='WOw8Q'></tfoot>

                    <legend id='WOw8Q'><style id='WOw8Q'><dir id='WOw8Q'><q id='WOw8Q'></q></dir></style></legend>

                  1. <i id='WOw8Q'><tr id='WOw8Q'><dt id='WOw8Q'><q id='WOw8Q'><span id='WOw8Q'><b id='WOw8Q'><form id='WOw8Q'><ins id='WOw8Q'></ins><ul id='WOw8Q'></ul><sub id='WOw8Q'></sub></form><legend id='WOw8Q'></legend><bdo id='WOw8Q'><pre id='WOw8Q'><center id='WOw8Q'></center></pre></bdo></b><th id='WOw8Q'></th></span></q></dt></tr></i><div id='WOw8Q'><tfoot id='WOw8Q'></tfoot><dl id='WOw8Q'><fieldset id='WOw8Q'></fieldset></dl></div>