- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在从雅虎财经获取数据,出于我的代码目的,我需要定位日期和打开变量。
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/
我正在使用 Yahoo! 创建一些 RSS!管道,但更新间隔太长。我怎样才能改变它?如果不能改变,究竟是多久? 最佳答案 管道文档说它honors the standard HTTP expirati
我有一项使用 Yahoo!财务表yahoo.finance.xchange .今天早上我注意到它已经停止工作,因为突然 Yahoo!开始返回一个错误说: { "error": { "l
我正在尝试将 yql 用于雅虎财务数据。我检查了 YQL 控制台上的 Show Community Table 以查看 Yahoo 标签下的数据库。 我发布了示例 yql: https://devel
我正在尝试使用如下链接向 Yahoo 授权: https://api.login.yahoo.com/oauth2/request_auth?client_id=dj0yJmk9ZHNUWExxZmh
我想获取 Yahoo! 中给定交易品种的关键统计数据金融。 我找到了几种使用 Yahoo Finance API 获取统计数据的方法。例如获取Apple的名称(n),ask(a),bid(b),mar
如何从 Yahoo Weather API 获取 3,5 或 7 天的天气预报,而不仅仅是今天和明天? http://weather.yahooapis.com/forecastrss?w=locat
我的站点上运行着 Yahoo Pipe,Romneyomics它使用来自 Delicious 和 Topsy 的饲料。Delicious 提要不提供“描述”字段,但 Topsy 提供,并且不仅仅是一个
我目前正在编写一个 JAVA 应用程序,我需要在其中访问来自用户 Yahoo 电子邮件的以下信息(以显示给他们)。 YQL 看起来像是一种“快速简便的方法”,但事实证明它更加困难。我运行的所有测试都在
我上周开发并测试了这个 API。今天,我注意到即使从示例查询中我也没有收到任何结果。 https://developer.yahoo.com/yql/console/?q=show%20tables&
我使用 Yahoo BOSS 的时间很短。这是一个简单的搜索 API,但拼写建议支持确实不那么强大。周围的人是否有任何关于在 BOSS 上获得更好的拼写建议的想法。 最佳答案 不幸的是,甚至在几年后,
我正在寻找一种允许雅虎应用程序通过 IMAP 读取用户电子邮件的方法。它适用于旧应用程序(在 Yahoo Mail API 已弃用之前创建),但尝试访问新应用程序的 IMAP 给我一个错误 [AUTH
我正在开发一个使用 Yahoo OAuth 的应用程序。 OAuth 一直运行良好,但我刚刚在 Yahoo 注册了我的域,现在它不允许我在本地开发时使用 OAuth,因为 “不允许自定义端口或主机未使
对于我们的生产应用程序,我们在雅虎帐户上设置了 API。我们得到消费者 key 和消费者 secret 。 当用户点击访问来自 yahoo 的联系人时,我们收到 401 Forbidden 错误。Om
我正在使用 OAuth 2.0 规范检索梦幻足球数据,其方式与本网站使用它的方式相同:http://yfantasysandbox.herokuapp.com/resource/user/game_t
我尝试按照 read.csv("http://ichart.finance.yahoo.com/table.csv?s=SPY") Not Working 的建议同时使用 http 和 https .
我正在检索雅虎金融公司的数据,我成功地获得了公司的股票数据。除了基本数据外,我还尝试检索同一家公司的关键统计数据。下图是我需要的关键统计字段。 我正在使用 yahoo web service api
我想使用 Beautiful Soup 和 urllib 从 python 脚本对雅虎搜索引擎进行基本查询。我对谷歌也做了同样的事情,这相当容易,但事实证明雅虎有点困难。查询雅虎搜索引擎的最小示例脚本
我最近一直在开发 Ruby on Rails 应用程序。我们使用 Yahoo Web Player 来播放我们的音频和视频文件。它工作得非常好,特别是对于不允许使用 Flash 的平板电脑和智能手机。
我想知道如果我们谈论压力单位,“in”代表什么?我相信 mb = mili bars = hPa。有了这个假设,就有些奇怪了。我分别使用 u=c 和 u=f 取了 2 个不同的 WOEID,结果如下
我需要一种方法来使用 javascript 返回某个城市的当前天气吗?我最好使用哪个 API?或者是否有任何其他应用程序可以使用 ajax 请求来获取当前天气? GeoPlanit 需要一个 appi
我是一名优秀的程序员,十分优秀!