问题标签 [quandl]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 熊猫数据框错误
我正在尝试对从 Quandl 收到的数据进行一些分析。
以下代码由我实现:
我收到的错误是:
df['HL_PCT'] = (df['Adj. High']) - df(['Adj. Low']) / df['Adj. Low']*100.0
TypeError: 'DataFrame' 对象不可调用
python-3.x - Python 3.5 - Quandl 错误处理
试图弄清楚如何处理错误:
这是我想要异常的代码片段:
break
如果我得到错误,我想退出。我的except
陈述会怎样?我试过NotFoundError
了,但似乎没有用。
python - python 中的回归学习程序在 Pandas 中出现异常错误
当我尝试运行这个程序时,它会产生一个不寻常的错误
在处理上述异常的过程中,又出现了一个异常:
我应该怎么做才能解决这个问题???有什么建议么
python - python pip密码学构建轮失败
我正在尝试安装像quandl这样的python包。由于我使用的是 pip3,因此我在 ubuntu 16 中使用以下命令安装包。
这给了我以下错误。
我也安装了轮子和密码学。但这行不通。有人可以帮我解决这个问题吗?
r - 如何编写 R 函数,从 Quandl 数据库中抓取多个数据系列(相同指标,不同国家)?
我想从名为 Quandl 的在线数据库下载不同国家的同一指标的数据系列。我可以为每个请求使用相同的 URL,但我只需要更改国家代码。
下面的代码不起作用,有人可以帮助我使用正确的 R 代码吗?
这是我关于stackoverflow的第一个问题,如果我还没有达到所有stackoverflow规则的水平,请道歉。我曾尝试使用谷歌等搜索答案。到目前为止没有成功......
我收到此错误消息:
match.arg(transform) 中的错误:
“arg”应该是“”、“diff”、“rdiff”、“normalize”、“cumul”、“rdiff_from”之一</p>
python - 在 ubuntu 14.04 上使用 pip 安装 quandl 时出错
这是我不断收到的错误。我一直在尝试安装 quandl 模块并一直遇到同样的错误。我曾尝试研究其他一些问题,但它们没有提供任何好的解决方案。我尝试查看错误,但我已经安装了 openssl。
我是 ubuntu 和 linux 的新手,所以我不知道我是否缺少重要的东西
python - Quandl 从 python 下载 wiki EOD 股票价格 - 如何?
- 有没有办法在 Quandl 上为 Wiki EOD 股票价格进行部分下载,但在过去的某一天 - 不是最新的日期,例如下载 2016-07-20?
整个数据库(太大):https ://www.quandl.com/data/WIKI/documentation/bulk-download
就在最后一天:https ://www.quandl.com/api/v3/databases/WIKI/data?api_key=myAPIkey&download_type=partial
所有股票的过去一天:?????
- 这个下载可以从python代码触发到指定文件夹吗?如何做到这一点?
python - 密码学构建失败的轮子
我正在尝试在 Ubuntu 16.04 上安装Quandl 。我使用了 command pip install quandl
,但我遇到了很多错误。第一个错误是标题中的错误,第二个错误是Failed cleaning build dir for cryptography
. 我研究并发现有人通过使用sudo apt-get install libssl-dev
安装open-ssl清除了这个错误,但这对我不起作用。我仍然得到同样的错误。
python - pandas: 'join' failing to compile
I'm having a bit of a problem trying to get my code to compile. Looks like the line with main_df = df
is causing a failure, and I don't quite understand why.
Any help is much appreciated.
I get this error:
Traceback (most recent call last): File "C:/Users/Dave/Documents/Python Files/helloworld.py", line 17, in main_df = main_df.join(df)
File "C:\Python35\lib\site-packages\pandas\core\frame.py", line 4385, in join rsuffix=rsuffix, sort=sort)
File "C:\Python35\lib\site-packages\pandas\core\frame.py", line 4399, in _join_compat suffixes=(lsuffix, rsuffix), sort=sort)
File "C:\Python35\lib\site-packages\pandas\tools\merge.py", line 39, in merge return op.get_result()
File "C:\Python35\lib\site-packages\pandas\tools\merge.py", line 223, in get_result rdata.items, rsuf)
File "C:\Python35\lib\site-packages\pandas\core\internals.py", line 4445, in items_overlap_with_suffix to_rename) ValueError: columns overlap but no suffix specified: Index(['Value'], dtype='object')