August 2018
Intermediate to advanced
90 pages
1h 57m
English
In order to explore this data, we use the head() method to look at the records from the top and we call the info() method on the DataFrame to get some more information, such as how many records there are, how many null or missing records there are, or what the data types of the various columns are.
We can see that the Date column is shown as object. We change this to date-time to visualize this data. To do this, we use the to_datetime method, and assign the converted values back to the same column—the DataFrame.
The following screenshot depicts the date format of bitcoins:

Set the index of the DataFrame ...
Read now
Unlock full access