StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.0 KiB
62 lines
1.0 KiB
4 years ago
|
.parcoords > svg, .parcoords > canvas {
|
||
|
font: 14px helvetica;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.parcoords > canvas {
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.parcoords text.label {
|
||
|
cursor: default;
|
||
|
fill: black;
|
||
|
}
|
||
|
|
||
|
.parcoords rect.background {
|
||
|
fill: transparent;
|
||
|
}
|
||
|
|
||
|
.parcoords rect.background:hover {
|
||
|
fill: rgba(120, 120, 120, 0.2);
|
||
|
}
|
||
|
|
||
|
.parcoords .resize rect {
|
||
|
fill: rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
.parcoords rect.extent {
|
||
|
fill: rgba(255, 255, 255, 0.25);
|
||
|
stroke: rgba(0, 0, 0, 0.6);
|
||
|
}
|
||
|
|
||
|
.parcoords .axis line, .parcoords .axis path {
|
||
|
fill: none;
|
||
|
stroke: #222;
|
||
|
shape-rendering: crispEdges;
|
||
|
}
|
||
|
|
||
|
.parcoords canvas {
|
||
|
opacity: 1;
|
||
|
-moz-transition: opacity 0.3s;
|
||
|
-webkit-transition: opacity 0.3s;
|
||
|
-o-transition: opacity 0.3s;
|
||
|
}
|
||
|
|
||
|
.parcoords canvas.faded {
|
||
|
opacity: 0.25;
|
||
|
}
|
||
|
|
||
|
.parcoords canvas.dimmed {
|
||
|
opacity: 0.85;
|
||
|
}
|
||
|
|
||
|
.parcoords {
|
||
|
-webkit-touch-callout: none;
|
||
|
-webkit-user-select: none;
|
||
|
-khtml-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
user-select: none;
|
||
|
background-color: white;
|
||
|
}
|