parent 9a93d84855
commit ac8fde7140
  1. 18
      frontend/src/components/FeatureSpaceDetail.vue
  2. 2
      frontend/src/components/Main.vue

@ -16,7 +16,7 @@
<div id="glyphLegend"> <div id="glyphLegend">
<div id="buildLegend"> <div id="buildLegend">
<div id="legend" style="margin-top: 2px; margin-left: -6px"></div> <div id="legend" style="margin-top: 2px; margin-left: -6px"></div>
<div id="legendText" title="MI: Mutual Information (range: light blue to dark blue); COR: Correlation (range: 0%-100%); VIF: Variance Influence Factor (range: ... < 2.5 < 5 < 10 < ...)" style="border: 1px solid black; min-height: 68px; max-height: 68px; min-width:170px; margin-top: 17px; margin-left: -12px"></div> <div id="legendText" title="MI: Mutual Information (range: light blue to dark blue); COR: Correlation (range: 0%-100%); VIF: Variance Influence Factor (reverse range: ... > 10 > 5 > 2.5 > ...)" style="border: 1px solid black; min-height: 68px; max-height: 68px; min-width:170px; margin-top: 17px; margin-left: -12px"></div>
</div> </div>
</div> </div>
</td> </td>
@ -865,26 +865,26 @@ export default {
for (let i = 0; i < Object.keys(VIFVar).length; i++) { for (let i = 0; i < Object.keys(VIFVar).length; i++) {
if (i != 0) { if (i != 0) {
if (Object.values(VIFVar)[i] > 10) { if (Object.values(VIFVar)[i] > 10) {
VIFVarFormatted.push(100) VIFVarFormatted.push(25)
} else if (Object.values(VIFVar)[i] > 5) { } else if (Object.values(VIFVar)[i] > 5) {
VIFVarFormatted.push(75)
} else if (Object.values(VIFVar)[i] > 2.5) {
VIFVarFormatted.push(50) VIFVarFormatted.push(50)
} else if (Object.values(VIFVar)[i] > 2.5) {
VIFVarFormatted.push(75)
} else { } else {
VIFVarFormatted.push(25) VIFVarFormatted.push(100)
} }
} }
} }
for (let i = 0; i < this.VIFRemaining.length; i++) { for (let i = 0; i < this.VIFRemaining.length; i++) {
if (Object.values(VIFVar)[i] > 10) { if (Object.values(VIFVar)[i] > 10) {
VIFVarFormatted.push(100) VIFVarFormatted.push(25)
} else if (Object.values(VIFVar)[i] > 5) { } else if (Object.values(VIFVar)[i] > 5) {
VIFVarFormatted.push(75)
} else if (Object.values(VIFVar)[i] > 2.5) {
VIFVarFormatted.push(50) VIFVarFormatted.push(50)
} else if (Object.values(VIFVar)[i] > 2.5) {
VIFVarFormatted.push(75)
} else { } else {
VIFVarFormatted.push(25) VIFVarFormatted.push(100)
} }
} }

@ -476,7 +476,7 @@ export default Vue.extend({
EventBus.$emit('SlidersCall') EventBus.$emit('SlidersCall')
this.keySlider = false this.keySlider = false
} }
//EventBus.$emit('ConfirmDataSet') // REMOVE THAT! EventBus.$emit('ConfirmDataSet') // REMOVE THAT!
} else { } else {
EventBus.$emit('dataSpace', this.correlResul) EventBus.$emit('dataSpace', this.correlResul)
EventBus.$emit('quad', this.correlResul) EventBus.$emit('quad', this.correlResul)

Loading…
Cancel
Save