I am new comer to the field of Machine Learning, and I have an excel sheet of this structure:
Columns = {date, ..., Inflation}
the first column is date the next columns are numbers and the last column is inflation which is decimal.
date ... Inflation
01/06/2016 ... -0.07363739
01/07/2016 ... -0.07363741
The problem is that I was asked to apply some classification algorithms over these forecast data such as (Naive Bayes, kNN, SVM, and maybe others as well) and compare the accuracy of these algorithms.
What I didn't understand is how to treat this data from a Classification perspective?
I did some Timeseries over the data with R and it worked, but I still can't apply the classification algorithms:
dft <- read_excel("./data.xlsx",
sheet = 1)
df <- ts(dft$inflation, frequency=12, start=c(2016,6))
plot.ts(df)
fit <- HoltWinters(df, beta=FALSE, gamma=FALSE)
Is there any help in how to work with this data for classification with R? Any help is appreciated
Data sample : https://drive.google.com/open?id=0B1gJg-F8Gb76a1N3NVBXNFd1bjg