09/03/2023

Cardano price prediction

 Cardano price prediction

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from numpy import log
from numpy import array
import math


from statsmodels.tsa.stattools import adfuller
from statsmodels.tsa.stattools import kpss
from statsmodels.tsa.arima.model import ARIMA
from statsmodels.tsa.stattools import pacf
from statsmodels.graphics.tsaplots import plot_acf
from statsmodels.graphics.tsaplots import plot_pacf


from sklearn.metrics import r2_score
from sklearn.metrics import mean_absolute_error as mae
from sklearn.metrics import mean_squared_error

import tensorflow as tf

import keras
from keras.models import Sequential
from keras.layers import LSTM, SimpleRNN
from keras.layers import Dense
from keras.layers import Activation

import warnings
warnings.filterwarnings('ignore')