-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rolling Window2_OPTICS.R
156 lines (113 loc) · 4.21 KB
/
Rolling Window2_OPTICS.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#Load File, Load Pa ckages
bank<-read.csv("bank-additional-full.csv",header=TRUE,sep=";")
library(rminer)
library(CrossClustering)
library(dplyr)
library(cluster)
library(dbscan)
library(diffusionMap)
set.seed(1)
#Create artificial time-axis beforehand though. The website noted that the values were chronologi-
#cally sorted. Therefore a simple itemnumber identifies a chronology.
time_axis <- as.numeric(rownames(bank))
bank_time <- cbind(bank, time_axis)
#Set modeling techniques, for more information see description in rminer documentation
models <- c("lr", "ksvm", "ctree", "mlp", "mlpe")
#Variable prep
C0_t <- vector(mode="character", length=0)
C1_t <- vector(mode="numeric", length=0)
C2_t <- vector(mode="numeric", length=0)
C3_t <- vector(mode="numeric", length=0)
C4_t <- vector(mode="numeric", length=0)
C5_t <- vector(mode="numeric", length=0)
C6_t <- vector(mode="numeric", length=0)
C7_t <- vector(mode="numeric", length=0)
C8_t <- vector(mode="numeric", length=0)
C9_t <- vector(mode="numeric", length=0)
C10_t <- vector(mode="numeric", length=0)
C11_t <- vector(mode="numeric", length=0)
C12_t <- vector(mode="numeric", length=0)
C13_t <- vector(mode="numeric", length=0)
C14_t <- vector(mode="numeric", length=0)
C15_t <- vector(mode="character", length=0)
#----------------Modeling with Rolling Window--------------------#
# Hyper-Parameters
windowsize <- c(5000, 2000, 1500, 1000)
increments <- 500
# Measuring Time
t <- system.time(
# Loop
for (ws in windowsize) {
for (i in models)
{
for(c in 1:((nrow(bank_time)-(2*ws)) %/% increments)) # itterations rolling window
{
w1 <- (1+(c-1)*increments)
w2 <- ((1+(c-1)*increments)+ws)
#subsets for training and testing
bank_time_ss_cl <- subset(bank_time[which(bank_time$time_axis >= w1 & bank_time$time_axis <= w2), ])
bank_time_ss_cl_without_y <- subset(bank_time_ss_cl[,-21])
#----------------------Clustering----------------------------#
# Setting up clustering training set
d <- daisy(bank_time_ss_cl_without_y, metric = "gower")
# printing clustering information training set
epsilon <- epsilonCompute(d, p = 0.01)
preclusters <- optics(d, epsilon)
clusters <- extractDBSCAN(preclusters, epsilon)
data <- bank_time_ss_cl
data$cluster <- unlist(clusters$cluster)
# memory clean
gc()
#Holdout, chronology in this case is important in order to not overestimate prediction accuracy.
data_ts <- data[1:(1/3*nrow(data)),]
data_tr <- data[((1/3*nrow(data))+1):(nrow(data)),]
#Modeling and Predictions
M <- fit(y~.,data_tr,model=i, task = "prob")
P <- predict(M, data_ts, type = "prob")
#Perfomance measure
cat("---Rolling Window model", i, "with", c, "th iteration","@ window-size",ws,"---", "\n")
C1=mmetric(data_ts$y,P,metric="AUC")
C2=mmetric(data_ts$y,P,metric="ALIFT")
C3=mmetric(data_ts$y,P,metric="ACC")
#Print findings
cat("AUC of", i, ":", C1, "\n")
cat("ALIFT of", i, ":", C2, "\n")
cat("ACC of", i, ":", C3, "\n")
# Stack values modeling
C0_t <- c(C0_t, c)
C1_t <- c(C1_t, C1)
C2_t <- c(C2_t, C2)
C3_t <- c(C3_t, C3)
C4_t <- c(C4_t, i)
C5_t <- c(C5_t, w1)
C6_t <- c(C6_t, w2)
C14_t <- c(C14_t, ws)
C15_t <- c(C15_t, "OPTICS")
# Stack values clustering
C9_t <- c(C9_t, length(unique(clusters$cluster)))
C10_t <- c (C10_t, "")
C11_t <- c(C11_t, epsilon)
# clean variables
data <- 0
data_tr <- 0
data_ts <- 0
bank_time_ss_cl <- 0
bank_time_ss_cl_without_y <- 0
gc()
} }
}
# system time finish
)
cat("---time---")
print(t)
#Combine Data Frame
rolling_window_sum <- cbind(C0_t,C4_t,C1_t,C2_t,C3_t,C5_t,C6_t,C14_t,C15_t,C9_t, C10_t, C11_t)
#Label Data Frame
colnames(rolling_window_sum) <- c("Itteration","Model","AUC", "ALIFT", "ACC", "Lower", "Upper", "Window-size",
"Clustering", "Amount of Clusters", "Silhouette", "% Ommited")
#Show Table (back check)
head(rolling_window_sum)
# Write file
#write.table(rolling_window_sum, "/home/schnitzel/rolling_window_clust.txt", sep=";")
write.table(rolling_window_sum, "rolling_window_OPTICS.txt", sep=";")
gc()