Reader small image

You're reading from  Hands-On Bitcoin Programming with Python

Product typeBook
Published inAug 2018
Reading LevelIntermediate
Publisher
ISBN-139781789537000
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
BignumWorks Software LLP
BignumWorks Software LLP
author image
BignumWorks Software LLP

BignumWorks Software LLP is an India-based software consultancy that provides consultancy services in the area of software development and technical training. Our domain expertise includes web, mobile, cloud app development, data science projects, in-house software training services, and up-skilling services
Read more about BignumWorks Software LLP

Right arrow

Exploring, manipulating, and visualizing the cleaned-up data

As the data cleanup is done, start with the data exploration tasks. We can use the pandas date-time capabilities to run some interesting queries.

For example, if we want to get all the records from a particular year, pass that year to the DataFrame inside square brackets. The following screenshot shows the price data from the year 2010:

We can also specify whether we want the data from a particular date.

The following screenshot shows the bitcoin price in USD from August 1, 2017:

We can also specify whether we want the data from a particular period spanning certain dates.

The following screenshot shows the data from August 1, 2017, onward:

Statistical information can also be retrieved using pandas methods. For example, to get the minimum price from this dataset, we can use the min() method, as shown in the following...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Hands-On Bitcoin Programming with Python
Published in: Aug 2018Publisher: ISBN-13: 9781789537000

Author (1)

author image
BignumWorks Software LLP

BignumWorks Software LLP is an India-based software consultancy that provides consultancy services in the area of software development and technical training. Our domain expertise includes web, mobile, cloud app development, data science projects, in-house software training services, and up-skilling services
Read more about BignumWorks Software LLP