August 2018
Intermediate to advanced
90 pages
1h 57m
English
The data in a pandas data object is called a DataFrame. A DataFrame is in a tabular data format. Now, print out some records to see how this looks. To print this out, we can call a method called head() on the price DataFrame.
When we do this, we get two columns—Date and Close Price—for the bitcoin in USD for that day. We also have a default index for the rows starting from 0, which was inserted by pandas by default while reading in the data. The following screenshot shows the two columns, Date and Close Price:

To get top-level information about this data, call the info() method on it. After calling this method, we get 2,592 records. ...
Read now
Unlock full access