gpt4 book ai didi

python - 如何访问 Pandas 的 DataReader 中的日期行?

转载 作者:太空宇宙 更新时间:2023-11-04 08:54:31 24 4
gpt4 key购买 nike

我正在使用 Python 的 Pandas从 Yahoo Finance 获取一些财务数据,这是 pandas_datareader 的内置功能。我希望访问它打印出来的日期,但它似乎不在列中,也不在我需要的 json 中,但是当我打印出对象时它就在那里:

from pandas_datareader.data import DataReader
import datetime

start = datetime.datetime(2015, 6, 1)
goog = DataReader('GOOGL', 'yahoo', start)
goog.to_json(None, orient="records") # this doesn't include dates!
print(goog) # this prints out the dates along with the other data!
print(goog.columns) # prints every column except the date column

如何在 json 字符串中包含日期和其他数据?

最佳答案

list(goog.index) 以时间戳列表的形式提供日期。

为了获取 json 中的日期,我快速查看了 docs .试试这个:

print goog.to_json(orient="index", date_format='iso') 

关于python - 如何访问 Pandas 的 DataReader 中的日期行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31509591/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com