在雅虎和谷歌垮台后,我发现一个人建议从晨星下载数据,但它只会给我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和编码的新手,所以如果有什么我可以更具体,请告诉我。
由于
答案 0 :(得分:1)
只需将.head()
放入
print(df.head())
因为那意味着产生前5行。
https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.head.html