Unix 시간을 Pandas 데이터 프레임에서 읽을 수있는 날짜로 변환
유닉스 시간과 가격이 포함 된 데이터 프레임이 있습니다. 사람이 읽을 수있는 날짜로 표시되도록 인덱스 열을 변환하고 싶습니다.
그래서 예를 들어 나는이 date
같은 1349633705
인덱스 열의하지만 난 그게로 표시 할 것 10/07/2012
(또는 적어도 10/07/2012 18:15
).
어떤 맥락에서 내가 작업중인 코드와 이미 시도한 코드는 다음과 같습니다.
import json
import urllib2
from datetime import datetime
response = urllib2.urlopen('http://blockchain.info/charts/market-price?&format=json')
data = json.load(response)
df = DataFrame(data['values'])
df.columns = ["date","price"]
#convert dates
df.date = df.date.apply(lambda d: datetime.strptime(d, "%Y-%m-%d"))
df.index = df.date
보시다시피 df.date = df.date.apply(lambda d: datetime.strptime(d, "%Y-%m-%d"))
문자열이 아닌 정수로 작업하기 때문에 작동하지 않는 여기를 사용하고 있습니다. 나는 내가 사용해야한다고 생각 datetime.date.fromtimestamp
하지만 이것을 전체에 적용하는 방법을 잘 모르겠습니다 df.date
.
감사.
이것은 epoch 이후 몇 초로 보입니다.
In [20]: df = DataFrame(data['values'])
In [21]: df.columns = ["date","price"]
In [22]: df
Out[22]:
<class 'pandas.core.frame.DataFrame'>
Int64Index: 358 entries, 0 to 357
Data columns (total 2 columns):
date 358 non-null values
price 358 non-null values
dtypes: float64(1), int64(1)
In [23]: df.head()
Out[23]:
date price
0 1349720105 12.08
1 1349806505 12.35
2 1349892905 12.15
3 1349979305 12.19
4 1350065705 12.15
In [25]: df['date'] = pd.to_datetime(df['date'],unit='s')
In [26]: df.head()
Out[26]:
date price
0 2012-10-08 18:15:05 12.08
1 2012-10-09 18:15:05 12.35
2 2012-10-10 18:15:05 12.15
3 2012-10-11 18:15:05 12.19
4 2012-10-12 18:15:05 12.15
In [27]: df.dtypes
Out[27]:
date datetime64[ns]
price float64
dtype: object
다음을 사용하려는 경우 :
df[DATE_FIELD]=(pd.to_datetime(df[DATE_FIELD],***unit='s'***))
오류가 발생합니다.
"pandas.tslib.OutOfBoundsDatetime : 's'단위로 입력을 변환 할 수 없습니다."
This means the DATE_FIELD
is not specified in seconds.
In my case, it was milli seconds - EPOCH time
.
The conversion worked using below:
df[DATE_FIELD]=(pd.to_datetime(df[DATE_FIELD],unit='ms'))
Assuming we imported pandas as pd
and df
is our dataframe
pd.to_datetime(df['date'], unit='s')
works for me.
Alternatively, by changing a line of the above code:
# df.date = df.date.apply(lambda d: datetime.strptime(d, "%Y-%m-%d"))
df.date = df.date.apply(lambda d: datetime.datetime.fromtimestamp(int(d)).strftime('%Y-%m-%d'))
It should also work.
참고URL : https://stackoverflow.com/questions/19231871/convert-unix-time-to-readable-date-in-pandas-dataframe
'programing' 카테고리의 다른 글
Console.WriteLine 출력을 텍스트 파일에 저장하는 방법 (0) | 2020.09.11 |
---|---|
Bash의 열에서 고유 값 수 가져 오기 (0) | 2020.09.11 |
조건부 Linq 쿼리 (0) | 2020.09.11 |
Reactjs : 동적 자식 구성 요소 상태 또는 부모에서 소품을 수정하는 방법은 무엇입니까? (0) | 2020.09.10 |
문자열 보간과 문자열 형식 (0) | 2020.09.10 |