aboutsummaryrefslogtreecommitdiff
path: root/tests.R
blob: 65ed46de0c5540b62371c5eccd20b3359ed7df59 (plain)
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
152
153
154
155
156
157
158
159
160
161
162
163
require(ggplot2)
require(gridExtra)
require(mp)

source("measures.R")

automated.m <- function(D, labels) {
  D.m <- D
  for (label in unique(labels)) {
    same.label <- labels == label
    D.m[same.label, same.label] <- D[same.label, same.label] * 0.1
  }

  D.m
}

test <- function(file, suffix, output.dir) {
  message("Testing dataset ", file)
  dataset <- read.table(file)

  # Extract labels
  labels <- dataset[, ncol(dataset)]
  classes <- as.factor(labels)
  X <- dataset[, -ncol(dataset)]

  n <- nrow(X)

  # Calculate distances (X) and normalize
  message("\tCalculating dist(X)")
  Dx <- dist(X)
  Dx <- Dx / mean(Dx)
  Dx <- as.matrix(Dx)

  # Sample dataset
  sample.indices <- sample(n, 3*sqrt(n))
  classes.s <- as.factor(labels[sample.indices])

  # Automatic sample positioning
  message("\tCalculating Ys")
  Dx.s <- Dx[sample.indices, sample.indices]
  Ys   <- forceScheme(Dx.s)

  # LAMP
  message("\tCalculating Y")
  Y <- lamp(X, sample.indices, Ys)

  # Calculate distances (Y) and normalize
  message("\tCalculating dist(Y)")
  Dy <- dist(Y)
  Dy <- Dy / mean(Dy)
  Dy <- as.matrix(Dy)

  message("\tCalculating P and Q")
  sigmas <- vector("numeric", n)
  sigmas[] <- 1
  P <- d2p(Dx, sigmas)
  Q <- d2p(Dy, sigmas)

  # Calculate measures
  message("\tCalculating measures")
  np <- NP(Dx, Dy)
  precision <- klDivergence(Q, P)
  recall <- klDivergence(P, Q)

  # Plot results
  #color_scale <- scale_colour_gradientn(colours = c("#e46c0a", "#dddddd", "#376092"))
  color_scale <- scale_colour_gradient2(mid = "#dddddd", space = "Lab")
  shape_scale <- scale_shape(solid = FALSE)
  Ys <- cbind(as.data.frame(Ys), classes.s)
  Y  <- cbind(as.data.frame(Y), classes, np, precision, recall)
  p.s <- ggplot(Ys) +
      theme_bw() +
      labs(x = "", y = "") +
      geom_point(aes(x = V1, y = V2, shape = classes.s, colour = classes.s)) +
      shape_scale
  p <- ggplot(Y) +
      theme_bw() +
      labs(x = "", y = "") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = classes)) +
      shape_scale
  p.np <- ggplot(Y) +
      theme_bw() +
      labs(x = "", y = "", title = "NP (9)") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = np)) +
      shape_scale + color_scale
  p.precision <- ggplot(Y) +
      theme_bw() +
      labs(x = "", y = "", title = "Precision") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = precision)) +
      shape_scale + color_scale
  p.recall <- ggplot(Y) +
      theme_bw() +
      labs(x = "", y = "", title = "Recall") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = recall)) +
      shape_scale + color_scale
  
  pdf(paste(output.dir, "original-", suffix, ".pdf", sep=""), width = 16, height = 8)
  grid.arrange(p.s, p, p.np, p.precision, p.recall, ncol=3)
  dev.off()

  # Perform manipulation
  message("\tCalculating Ys.m")
  Dx.m <- automated.m(Dx.s, labels[sample.indices])
  Ys.m <- forceScheme(Dx.m)

  # LAMP
  message("\tCalculating Y.m")
  Y.m <- lamp(X, sample.indices, Ys.m)

  # Calculate distances (Y.m) and normalize
  message("\tCalculating dist(Y.m)")
  Dy <- dist(Y.m)
  Dy <- Dy / mean(Dy)
  Dy <- as.matrix(Dy)

  message("\tCalculating Q")
  Q  <- d2p(Dy, sigmas)

  # Calculate measures
  message("\tCalculating measures")
  np <- np - NP(Dx, Dy)
  precision <- precision - klDivergence(Q, P)
  recall <- recall - klDivergence(P, Q)

  # Plot results
  Ys.m <- cbind(as.data.frame(Ys.m), classes.s)
  Y.m  <- cbind(as.data.frame(Y.m), classes, np, precision, recall)
  p.s <- ggplot(cbind(Ys.m, classes.s)) +
      theme_bw() +
      labs(x = "", y = "") +
      geom_point(aes(x = V1, y = V2, shape = classes.s, colour = classes.s)) +
      scale_shape_identity() +
      shape_scale
  p <- ggplot(cbind(Y.m, classes)) +
      theme_bw() +
      labs(x = "", y = "") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = classes)) +
      shape_scale
  p.np <- ggplot(cbind(Y.m, np)) +
      theme_bw() +
      labs(x = "", y = "", title = "NP (9)") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = np)) +
      shape_scale + color_scale
  p.precision <- ggplot(cbind(Y.m, precision)) +
      theme_bw() +
      labs(x = "", y = "", title = "Precision") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = precision)) +
      shape_scale + color_scale
  p.recall <- ggplot(cbind(Y.m, recall)) +
      theme_bw() +
      labs(x = "", y = "", title = "Recall") +
      geom_point(aes(x = V1, y = V2, shape = classes, colour = recall)) +
      shape_scale + color_scale
  
  pdf(paste(output.dir, "manip-", suffix, ".pdf", sep=""), width = 16, height = 8)
  grid.arrange(p.s, p, p.np, p.precision, p.recall, ncol=3)
  dev.off()
}

test(file = "datasets/iris-std.tbl", suffix = "iris", "plots/")
test(file = "datasets/wdbc.tbl", suffix = "wdbc", "plots/")
test(file = "datasets/segmentation.tbl", suffix = "segmentation", "plots/")
test(file = "datasets/images.tbl", suffix = "images", "plots/")