quandl Questions
12
Trying to install quandl and need pandas, so I tried pip install pandas and get:
Could not find a version that satisfies the requirement numpy==1.9.3 (from versions: 1.10.4, 1.11.0, 1.11.1rc1, 1.1...
Tibia asked 12/4, 2018 at 20:45
15
Solved
I am am trying to run the Quandl module on a virtualenv which I have uninstalled packages only pandas and then Quandl,
I am running Python 2.7.10 - I have uninstalled all other python versions, b...
Scleroma asked 25/5, 2016 at 0:55
2
I am stuck in the following lines
import quandl,math
import pandas as pd
import numpy as np
from sklearn import preprocessing ,cross_validation , svm
from sklearn.linear_model import LinearRegress...
1
I have already installed quandl library at command prompt using command:
pip3 install quandl
And I am able to use various quandl methods.
But in my Jupyter Notebook, when I do "import quandl", ...
Delphina asked 24/10, 2019 at 14:19
2
I had made a private quandl account and received my quandl Api key but how to add the key to my request in python?
My Code:
import pandas as pd
import quandl
df = quandl.get('EOD/V')
print(df....
4
Solved
Here is my entire program:
import quandl
print("Hello World");
which results in:
Process finished with exit code -1073741819 (0xC0000005)
In the first place I imported Quandl, but then I r...
Hushhush asked 28/7, 2018 at 16:40
1
Solved
Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl.
Google Finance was deprecated in 2011 but stil...
Alansen asked 18/5, 2017 at 13:8
3
Solved
I would like to retrieve some data from quandl and analyse them in Julia. There is, unfortunately, no official API available for this (yet). I am aware of this solution, but it is still quite limit...
4
Solved
All,
I'm looking to download stock data either from Yahoo or Google on 15 - 60 minute intervals for as much history as I can get. I've come up with a crude solution as follows:
library(RCurl)
t...
Loganloganberry asked 25/3, 2013 at 7:0
3
Solved
I am downloading data from FRED with the quantmod library (author Jeffrey A. Ryan). With Yahoo and Google data, I am able to set start and end dates. Can the same be done for FRED data?
The help ...
1
© 2022 - 2024 — McMap. All rights reserved.