gpt4 book ai didi

python - 晨星数据导入不会给出所要求的所有日期价格

转载 作者:行者123 更新时间:2023-12-01 09:23:23 24 4
gpt4 key购买 nike

雅虎和谷歌倒台后,我发现一个人建议从晨星下载数据,但它只给我最多 5 天的价格。我尝试过不同的日期,但没有办法让它发挥作用。

我使用 python 3.6.5 和 PyCharm。

import datetime
import pandas_datareader.data as web

start = datetime.datetime(2016, 1, 1)
end = datetime.datetime(2016, 1, 10)
df = web.DataReader("AAPL", 'morningstar', start, end)
df.reset_index(inplace=True)
df.set_index("Date", inplace=True)
df = df.drop("Symbol", axis=1)

print(df.head())

我对 Python 和编码都很陌生,所以如果有什么我可以更具体的,请告诉我。

谢谢

最佳答案

只需将 .head() 放入

print(df.head())

因为这意味着生成前 5 行。

https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.head.html

关于python - 晨星数据导入不会给出所要求的所有日期价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50628724/

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