|
|
|
@ -16,7 +16,7 @@ |
|
|
|
|
<div id="glyphLegend"> |
|
|
|
|
<div id="buildLegend"> |
|
|
|
|
<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> |
|
|
|
|
</td> |
|
|
|
@ -865,26 +865,26 @@ export default { |
|
|
|
|
for (let i = 0; i < Object.keys(VIFVar).length; i++) { |
|
|
|
|
if (i != 0) { |
|
|
|
|
if (Object.values(VIFVar)[i] > 10) { |
|
|
|
|
VIFVarFormatted.push(100) |
|
|
|
|
VIFVarFormatted.push(25) |
|
|
|
|
} else if (Object.values(VIFVar)[i] > 5) { |
|
|
|
|
VIFVarFormatted.push(75) |
|
|
|
|
} else if (Object.values(VIFVar)[i] > 2.5) { |
|
|
|
|
VIFVarFormatted.push(50) |
|
|
|
|
} else if (Object.values(VIFVar)[i] > 2.5) { |
|
|
|
|
VIFVarFormatted.push(75) |
|
|
|
|
} else { |
|
|
|
|
VIFVarFormatted.push(25) |
|
|
|
|
VIFVarFormatted.push(100) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (let i = 0; i < this.VIFRemaining.length; i++) { |
|
|
|
|
if (Object.values(VIFVar)[i] > 10) { |
|
|
|
|
VIFVarFormatted.push(100) |
|
|
|
|
VIFVarFormatted.push(25) |
|
|
|
|
} else if (Object.values(VIFVar)[i] > 5) { |
|
|
|
|
VIFVarFormatted.push(75) |
|
|
|
|
} else if (Object.values(VIFVar)[i] > 2.5) { |
|
|
|
|
VIFVarFormatted.push(50) |
|
|
|
|
} else if (Object.values(VIFVar)[i] > 2.5) { |
|
|
|
|
VIFVarFormatted.push(75) |
|
|
|
|
} else { |
|
|
|
|
VIFVarFormatted.push(25) |
|
|
|
|
VIFVarFormatted.push(100) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|