In this section, we are going to use the same dataset and apply Recurrent Neural Network (RNN) to predict the Bitcoin price. Create a new notebook in your Jupyter iPython.
Predicting Bitcoin price using Recurrent Neural Network
Importing packages
We are going to import libraries as we go:
import numpy as np import pandas as pd from matplotlib import pyplot as plt
Importing datasets
We can import the datasets using the read_csv function provided by pandas:
dframe = pd.read_csv('bitcoin.csv')
Figure 12.2 shows how the dataset looks. We are using the same dataset...