@@ -71,6 +71,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_DUR)]] <- list( #false negative com
7171 cname = " False Negatives relative to Scene-Based Duration Graph" ,
7272 folder = MEAS_FALSENEG ,
7373 object = " nodes" ,
74+ weighted = FALSE ,
7475 foo = function (graph )
7576 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_DUR ), graph , filtered = FALSE )
7677 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -86,6 +87,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_WEIGHT, SFX_DUR)]] <- list( #Weight
8687 cname = " Weighted False Negatives relative to Scene-Based Duration Graph" ,
8788 folder = MEAS_FALSENEG ,
8889 object = " nodes" ,
90+ weighted = TRUE ,
8991 foo = function (graph )
9092 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_DUR ), graph , filtered = FALSE )
9193 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -101,6 +103,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_WEIGHT, SFX_NORM, SFX_DUR)]] <- lis
101103 cname = " Weighted normalized False Negatives relative to Scene-Based Duration Graph" ,
102104 folder = MEAS_FALSENEG ,
103105 object = " nodes" ,
106+ weighted = TRUE ,
104107 foo = function (graph )
105108 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_NORM , SFX_DUR ), graph , filtered = FALSE )
106109 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -116,6 +119,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_OCC)]] <- list( #false negative com
116119 cname = " False Negatives relative to Scene-Based Occurrences Graph" ,
117120 folder = MEAS_FALSENEG ,
118121 object = " nodes" ,
122+ weighted = FALSE ,
119123 foo = function (graph )
120124 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_OCC ), graph , filtered = FALSE )
121125 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -131,6 +135,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_WEIGHT, SFX_OCC)]] <- list( #Weight
131135 cname = " Weighted False Negatives relative to Scene-Based Occurrences Graph" ,
132136 folder = MEAS_FALSENEG ,
133137 object = " nodes" ,
138+ weighted = TRUE ,
134139 foo = function (graph )
135140 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_OCC ), graph , filtered = FALSE )
136141 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -146,6 +151,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_WEIGHT, SFX_NORM, SFX_OCC)]] <- lis
146151 cname = " Weighted normalized False Negatives relative to Scene-Based Occurrences Graph" ,
147152 folder = MEAS_FALSENEG ,
148153 object = " nodes" ,
154+ weighted = TRUE ,
149155 foo = function (graph )
150156 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_NORM , SFX_OCC ), graph , filtered = FALSE )
151157 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -165,6 +171,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_DUR)]] <- list( #fals
165171 cname = " False Negatives relative to Filtered Scene-Based Duration Graph" ,
166172 folder = MEAS_FALSENEG ,
167173 object = " nodes" ,
174+ weighted = FALSE ,
168175 foo = function (graph )
169176 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_DUR ), graph , filtered = TRUE )
170177 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -180,6 +187,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_WEIGHT, SFX_DUR)]] <-
180187 cname = " Weighted False Negatives relative to Filtered Scene-Based Duration Graph" ,
181188 folder = MEAS_FALSENEG ,
182189 object = " nodes" ,
190+ weighted = TRUE ,
183191 foo = function (graph )
184192 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_DUR ), graph , filtered = TRUE )
185193 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -195,6 +203,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_WEIGHT, SFX_NORM, SFX
195203 cname = " Weighted normalized False Negatives relative to Filtered Scene-Based Duration Graph" ,
196204 folder = MEAS_FALSENEG ,
197205 object = " nodes" ,
206+ weighted = TRUE ,
198207 foo = function (graph )
199208 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_NORM , SFX_DUR ), graph , filtered = TRUE )
200209 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -210,6 +219,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_OCC)]] <- list( #fals
210219 cname = " False Negatives relative to Filtered Scene-Based Occurrences Graph" ,
211220 folder = MEAS_FALSENEG ,
212221 object = " nodes" ,
222+ weighted = FALSE ,
213223 foo = function (graph )
214224 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_OCC ), graph , filtered = TRUE )
215225 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -225,6 +235,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_WEIGHT, SFX_OCC)]] <-
225235 cname = " Weighted False Negatives relative to Filtered Scene-Based Occurrences Graph" ,
226236 folder = MEAS_FALSENEG ,
227237 object = " nodes" ,
238+ weighted = TRUE ,
228239 foo = function (graph )
229240 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_OCC ), graph , filtered = TRUE )
230241 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -240,6 +251,7 @@ NODECOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_WEIGHT, SFX_NORM, SFX
240251 cname = " Weighted normalized False Negatives relative to Filtered Scene-Based Occurrences Graph" ,
241252 folder = MEAS_FALSENEG ,
242253 object = " nodes" ,
254+ weighted = TRUE ,
243255 foo = function (graph )
244256 { tmp <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_NORM , SFX_OCC ), graph , filtered = TRUE )
245257 m <- matrix (0 , nrow = gorder(graph ), ncol = gorder(graph ))
@@ -259,6 +271,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_TOTAL, SFX_DUR)]] <- list( #false
259271 cname = " False Negatives relative to Scene-Based Duration Graph" ,
260272 folder = MEAS_FALSENEG ,
261273 object = " graph" ,
274+ weighted = FALSE ,
262275 foo = function (graph )
263276 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_DUR ), graph , filtered = FALSE )
264277 sum(values )
@@ -270,6 +283,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_TOTAL, SFX_WEIGHT, SFX_DUR)]] <- l
270283 cname = " Weighted False Negatives relative to Scene-Based Duration Graph" ,
271284 folder = MEAS_FALSENEG ,
272285 object = " graph" ,
286+ weighted = TRUE ,
273287 foo = function (graph )
274288 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_DUR ), graph , filtered = FALSE )
275289 sum(values )
@@ -281,6 +295,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_TOTAL, SFX_WEIGHT, SFX_NORM, SFX_D
281295 cname = " Weighted normalized False Negatives relative to Scene-Based Duration Graph" ,
282296 folder = MEAS_FALSENEG ,
283297 object = " graph" ,
298+ weighted = TRUE ,
284299 foo = function (graph )
285300 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_NORM , SFX_DUR ), graph , filtered = FALSE )
286301 sum(values )
@@ -292,6 +307,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_TOTAL, SFX_OCC)]] <- list( #false
292307 cname = " False Negatives relative to Scene-Based Occurrences Graph" ,
293308 folder = MEAS_FALSENEG ,
294309 object = " graph" ,
310+ weighted = FALSE ,
295311 foo = function (graph )
296312 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_OCC ), graph , filtered = FALSE )
297313 sum(values )
@@ -303,6 +319,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_TOTAL, SFX_WEIGHT, SFX_OCC)]] <- l
303319 cname = " Weighted False Negatives relative to Scene-Based Occurrences Graph" ,
304320 folder = MEAS_FALSENEG ,
305321 object = " graph" ,
322+ weighted = TRUE ,
306323 foo = function (graph )
307324 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_OCC ), graph , filtered = FALSE )
308325 sum(values )
@@ -314,6 +331,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_TOTAL, SFX_WEIGHT, SFX_NORM, SFX_O
314331 cname = " Weighted normalized False Negatives relative to Scene-Based Occurrences Graph" ,
315332 folder = MEAS_FALSENEG ,
316333 object = " graph" ,
334+ weighted = TRUE ,
317335 foo = function (graph )
318336 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_WEIGHT , SFX_NORM , SFX_OCC ), graph , filtered = FALSE )
319337 sum(values )
@@ -329,6 +347,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_TOTAL, SFX_DUR)]] <-
329347 cname = " False Negatives relative to Filtered Scene-Based Duration Graph" ,
330348 folder = MEAS_FALSENEG ,
331349 object = " graph" ,
350+ weighted = FALSE ,
332351 foo = function (graph )
333352 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_DUR ), graph , filtered = TRUE )
334353 sum(values )
@@ -340,6 +359,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_TOTAL, SFX_WEIGHT, S
340359 cname = " Weighted False Negatives relative to Filtered Scene-Based Duration Graph" ,
341360 folder = MEAS_FALSENEG ,
342361 object = " graph" ,
362+ weighted = TRUE ,
343363 foo = function (graph )
344364 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_DUR ), graph , filtered = TRUE )
345365 sum(values )
@@ -351,6 +371,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_TOTAL, SFX_WEIGHT, S
351371 cname = " Weighted normalized False Negatives relative to Filtered Scene-Based Duration Graph" ,
352372 folder = MEAS_FALSENEG ,
353373 object = " graph" ,
374+ weighted = TRUE ,
354375 foo = function (graph )
355376 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_NORM , SFX_DUR ), graph , filtered = TRUE )
356377 sum(values )
@@ -362,6 +383,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_TOTAL, SFX_OCC)]] <-
362383 cname = " False Negatives relative to Filtered Scene-Based Occurrences Graph" ,
363384 folder = MEAS_FALSENEG ,
364385 object = " graph" ,
386+ weighted = FALSE ,
365387 foo = function (graph )
366388 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_OCC ), graph , filtered = TRUE )
367389 sum(values )
@@ -373,6 +395,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_TOTAL, SFX_WEIGHT, S
373395 cname = " Weighted False Negatives relative to Filtered Scene-Based Occurrences Graph" ,
374396 folder = MEAS_FALSENEG ,
375397 object = " graph" ,
398+ weighted = TRUE ,
376399 foo = function (graph )
377400 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_OCC ), graph , filtered = TRUE )
378401 sum(values )
@@ -384,6 +407,7 @@ GRAPHCOMP_MEASURES[[paste0(MEAS_FALSENEG, SFX_FILTERED, SFX_TOTAL, SFX_WEIGHT, S
384407 cname = " Weighted normalized False Negatives relative to Filtered Scene-Based Occurrences Graph" ,
385408 folder = MEAS_FALSENEG ,
386409 object = " graph" ,
410+ weighted = TRUE ,
387411 foo = function (graph )
388412 { values <- compute.falsenegative(paste0(MEAS_FALSENEG , SFX_FILTERED , SFX_WEIGHT , SFX_NORM , SFX_OCC ), graph , filtered = TRUE )
389413 sum(values )
0 commit comments