-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestingScript.R
More file actions
21 lines (16 loc) · 896 Bytes
/
Copy pathtestingScript.R
File metadata and controls
21 lines (16 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -------------------------------------------------------------------------------------------------
# -------------------------------------------------------------------------------------------------
devtools::load_all()
datafile = "13_breast-cancer"
# datafile = "seq_target_92"
# option = "stat"
data = RWeka::read.arff(file = paste0("data/datasets/", datafile, ".arff"))
pre.data = preProcessing(data = data)
# mfe.feat = getMfeFeatures(data = data)
# comp = getCompFeatures(data = pre.data)
# cnet = getCnetFeatures(data = data)
# pca.feat = getPCAFeatures(data = pre.data)
# stat = getStatlogFeatures(data = data)
runExtraction(datafile = datafile)
# -------------------------------------------------------------------------------------------------
# -------------------------------------------------------------------------------------------------