New to ML trying to use SVM and SVR for 1st time some syntax/transposition errors
Clash Royale CLAN TAG #URR8PPP New to ML trying to use SVM and SVR for 1st time some syntax/transposition errors I am trying to run A SVR on some data I got from yahoo finance. I want to use closing prices of Ethereum to predict next 10-15 days path using a supervised learning method. I have already done autoregressive model (ARIMA) but now I want to try ML techniques like pattern recognition so I start with SVR I am simply running into a problem that I dont know how to convert my data column into a row so that the SVR works...I thought it would be simple but I am new to coding overall...appreciate your help; see below: ''' building a simple model for using machine learning to do pattern recog on stock prices''' import pandas as pd import matplotlib.pyplot as plt import matplotlib.pylab as ply import numpy as np from pandas import DataFrame as df from sklearn.svm import SVR df = pd.read_csv("C:LearningETH.csv", index_col='Date', parse_dates=Tru...