python - df_dates = df.loc[ :, "Date"] 无法读取 'Date' 列(数据来自 yahoo Fin)

标签 python pandas date yahoo-finance

我目前正在从雅虎财经获取数据,出于我的代码目的,我需要定位日期和打开变量。

df_dates = df.loc[:,'Date'] # Get all of the rows from the Date column
df_open = df.loc[:,'Open'] #Get all of the rows from the Open column

但是,据我了解,日期看起来不像列,但我们可以看到有一个名为“日期”的列

我像这样从雅虎获取更新;

df = pdr.get_data_yahoo("AMD", start ='2019-10-01')

在我执行之后;

df_dates = df.loc[:,'Date'] # Get all of the rows from the Date column
df_open = df.loc[:,'Open'] #Get all of the rows from the Open column

这是我收到的错误。

--------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
   2896             try:
-> 2897                 return self._engine.get_loc(key)
   2898             except KeyError:

pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()

pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()

pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()

pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()

KeyError: 'Date'

During handling of the above exception, another exception occurred:

KeyError                                  Traceback (most recent call last)
8 frames
/usr/local/lib/python3.6/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
   2897                 return self._engine.get_loc(key)
   2898             except KeyError:
-> 2899                 return self._engine.get_loc(self._maybe_cast_indexer(key))
   2900         indexer = self.get_indexer([key], method=method, tolerance=tolerance)
   2901         if indexer.ndim > 1 or indexer.size > 1:

pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()

pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()

pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()

pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()

KeyError: 'Date'

如何找到“日期”列?

最好,

最佳答案

from pandas_datareader import data as pdr
df = pdr.get_data_yahoo("AMD", start ='2019-10-01')

检查列和索引:

df.columns

输出:

Index(['High', 'Low', 'Open', 'Close', 'Volume', 'Adj Close'], dtype='object')

df.index

输出

DatetimeIndex(['2019-10-01', '2019-10-02', '2019-10-03', '2019-10-04',
               '2019-10-07', '2019-10-08', '2019-10-09', '2019-10-10',
               '2019-10-11', '2019-10-14', '2019-10-15', '2019-10-16',
               '2019-10-17', '2019-10-18', '2019-10-21', '2019-10-22',
               '2019-10-23', '2019-10-24', '2019-10-25', '2019-10-28',
               '2019-10-29', '2019-10-30', '2019-10-31', '2019-11-01',
               '2019-11-04', '2019-11-05', '2019-11-06', '2019-11-07',
               '2019-11-08'],
              dtype='datetime64[ns]', name='Date', freq=None)

如您所见,Date 属于索引,因此您无法通过其标签选择它。直接在读取数据帧上使用reset_index可能不太方便,因为其余不再具有Date索引。使用Index.to_frame然后DataFrame.reset_index

df_Open=df[['Open']] #this returns a DataFrame, you don't need loc
df_dates=df.index.to_frame().reset_index(drop=True)
print(df_dates)

         Date
0  2019-10-01
1  2019-10-02
2  2019-10-03
3  2019-10-04
4  2019-10-07
5  2019-10-08
6  2019-10-09
7  2019-10-10
8  2019-10-11
9  2019-10-14
10 2019-10-15
11 2019-10-16
12 2019-10-17
13 2019-10-18
14 2019-10-21
15 2019-10-22
16 2019-10-23
17 2019-10-24
18 2019-10-25
19 2019-10-28
20 2019-10-29
21 2019-10-30
22 2019-10-31
23 2019-11-01
24 2019-11-04
25 2019-11-05
26 2019-11-06
27 2019-11-07
28 2019-11-08

关于python - df_dates = df.loc[ :, "Date"] 无法读取 'Date' 列(数据来自 yahoo Fin),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58769202/

相关文章:

date - 为什么nlog不能读取当前日期

python - 如何将图像划分为大小均匀、需要时重叠的图 block ?

python - 对 numpy 数组的非零元素进行排序并获取它们的索引

python-3.x - 如何使用 python 对数据帧之间的降序进行排序

python - 将文本日期转换为日期,然后保留 NA 值

node.js - 加载时将 mongo 存储的日期转换回自 Unix 纪元以来的毫秒数?

python - 将 QWizardPage 的 QPushButton 与 QWizard 的 NextButton 连接

python - Xcode 在 iOS 中使用 Python.framework 时出错,架构 i386 的 undefined symbol

python - Pandas中Groupby进行跨组匹配的可能性

python - 在 Web2py Python 中格式化日期