我正在尝试对此data进行回归分析,以使用数据库中的第一个预测变量来预测数据的最后一列。
data=read.csv(file="~data.csv",sep=";",stringsAsFactors = FALSE)
# separate X and Y
# the target is Slowness in traffic (%)
names(data)[length(data)]="y"
plot(data$y,type="l")
the plot i get of the last column y
当这些类型的目标变量是周期性的时,是否有任何特定的回归。