April 2019
Intermediate to advanced
426 pages
11h 13m
English
The Quandl package requires the latest versions of NumPy and pandas. Additionally, we will require matplotlib for the rest of this chapter.
To install these packages, type the following code in your terminal window:
$ pip install quandl numpy pandas matplotlib
Over the years, there have been many changes to the pandas library. Code written for older versions of pandas may not work with the latest versions as there have been many deprecations. The version of pandas that we will be working with is 0.23. To check which version of pandas you are using, type the following command in a Python shell:
>>> import pandas>>> pandas.__version__'0.23.3'
An API (short for Application Programming Interface ...
Read now
Unlock full access