在 Pandas 中转换 SAS 日期时间

convert a SAS datetime in Pandas(在 Pandas 中转换 SAS 日期时间)
本文介绍了在 Pandas 中转换 SAS 日期时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在使用 Pandas 通过 read_sas

SAS 数据集中有一个 datetime 变量,在 Pandas 中显示为:

There is a datetime variable in the SAS dataset, which appears in Pandas as:

1.775376e+09

将其转换为 str 后,日期为:

Once I convert it to str the date is:

1775376002.0

SAS 中的相应日期(不在我的 Pandas 数据集中)似乎是 DATETIME21.2

The corresponding date in SAS (not in my Pandas dataset) appears to be a DATETIME21.2

04APR2016:08:00:02.00

我尝试使用转换它

pd.to_datetime(df.mysasdate,format='%d%m%Y%H%M%S') 没有成功

TypeError: 'float' object is unsliceable

有什么想法吗?谢谢!

推荐答案

SAS 日期值

是一个值,表示从 1960 年 1 月 1 日到指定日期之间的天数.链接

is a value that represents the number of days between January 1, 1960, and a specified date. link

所以你可以转换数字 to_timedelta 并添加 date 1960-01-01 00:00:00

So you can convert number to_timedelta and add date 1960-01-01 00:00:00

df = pd.DataFrame({'mysasdate':[1775376002.0, 1775377002.0]})
print (df)
      mysasdate
0  1.775376e+09
1  1.775377e+09

print (pd.to_timedelta(df['mysasdate'], unit='s') + pd.datetime(1960, 1, 1)) 
0   2016-04-04 08:00:02
1   2016-04-04 08:16:42
Name: mysasdate, dtype: datetime64[ns]

这篇关于在 Pandas 中转换 SAS 日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

patching a class yields quot;AttributeError: Mock object has no attributequot; when accessing instance attributes(修补类会产生“AttributeError:Mock object has no attribute;访问实例属性时)
How to mock lt;ModelClassgt;.query.filter_by() in Flask-SqlAlchemy(如何在 Flask-SqlAlchemy 中模拟 lt;ModelClassgt;.query.filter_by())
FTPLIB error socket.gaierror: [Errno 8] nodename nor servname provided, or not known(FTPLIB 错误 socket.gaierror: [Errno 8] nodename nor servname provided, or not known)
Weird numpy.sum behavior when adding zeros(添加零时奇怪的 numpy.sum 行为)
Why does the #39;int#39; object is not callable error occur when using the sum() function?(为什么在使用 sum() 函数时会出现 int object is not callable 错误?)
How to sum in pandas by unique index in several columns?(如何通过几列中的唯一索引对 pandas 求和?)