Learn practical skills, build real-world projects, and advance your career

Ethereum Price Analysis with Pandas

Ethereum Price Analysis
Source

In this notebook, We are going to look at price data of Ethereum. Dataset under consideration is taken from Kaggle.com. This dataset contain, Daily Value of Ethereum at equal interval of 1 day with the time stamp given in data. It contains the data from the launch date of Ethereum i.e. 30th of July, 2015 till 5th of September, 2018.

import pandas as pd
eth_data = pd.read_csv("ethereum_data/EtherPriceHistory(USD).csv")
eth_data
eth_data.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 1164 entries, 0 to 1163 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Date(UTC) 1164 non-null object 1 UnixTimeStamp 1164 non-null int64 2 Value 1164 non-null float64 dtypes: float64(1), int64(1), object(1) memory usage: 27.4+ KB