10/03/2023

Ethereum analysis and forecasting

Ethereum analysis and forecasting

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import math
import matplotlib.dates as mdates
import scipy.stats
import pylab
import lightgbm as lgb
from lightgbm import LGBMRegressor


import missingno as msno
import plotly.express as px
import plotly.graph_objects as go

from sklearn.dummy import DummyRegressor
from sklearn.metrics import mean_absolute_error, mean_squared_error

from dateutil.parser import parse

from statsmodels.tsa.stattools import adfuller
import statsmodels.api as sm
from statsmodels.tsa.seasonal import seasonal_decompose

from pmdarima import auto_arima

import warnings
warnings.filterwarnings('ignore')

df = pd.read_csv("ETH-USD.csv")
df.describe()