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.
157 lines
3.9 KiB
157 lines
3.9 KiB
<template>
|
|
<div class="container">
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Barchart</h1>
|
|
<bar-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Horizontal Barchart</h1>
|
|
<horizontal-bar-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Barchart with reactive mixing for live data</h1>
|
|
<reactive-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Barchart with reactive mixing for live data as props</h1>
|
|
<reactive-prop-example :chart-data="dataPoints"/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Linechart</h1>
|
|
<line-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Doughnutchart</h1>
|
|
<doughnut-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Piechart</h1>
|
|
<pie-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Radarchart</h1>
|
|
<radar-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Polararea</h1>
|
|
<polar-area-example/>
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Bubblechart</h1>
|
|
<bubble-example />
|
|
</div>
|
|
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Scatter Chart</h1>
|
|
<scatter-example />
|
|
</div>
|
|
<div class="Chart">
|
|
<h1 style="text-align:center;">Custom Line Chart</h1>
|
|
<custom-line />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BarExample from './BarExample'
|
|
import LineExample from './LineExample'
|
|
import DoughnutExample from './DoughnutExample'
|
|
import PieExample from './PieExample'
|
|
import RadarExample from './RadarExample'
|
|
import PolarAreaExample from './PolarAreaExample'
|
|
import BubbleExample from './BubbleExample'
|
|
import ReactiveExample from './ReactiveExample'
|
|
import ReactivePropExample from './ReactivePropExample'
|
|
import ScatterExample from './ScatterExample'
|
|
import HorizontalBarExample from './HorizontalBarExample'
|
|
import CustomLine from './CustomExample'
|
|
|
|
export default {
|
|
components: {
|
|
BarExample,
|
|
LineExample,
|
|
DoughnutExample,
|
|
CustomLine,
|
|
PieExample,
|
|
RadarExample,
|
|
PolarAreaExample,
|
|
BubbleExample,
|
|
ReactiveExample,
|
|
ReactivePropExample,
|
|
ScatterExample,
|
|
HorizontalBarExample
|
|
},
|
|
data () {
|
|
return {
|
|
dataPoints: null,
|
|
height: 20
|
|
}
|
|
},
|
|
mounted () {
|
|
setInterval(() => {
|
|
this.fillData()
|
|
}, 2000)
|
|
},
|
|
methods: {
|
|
increaseHeight () {
|
|
this.height += 10
|
|
},
|
|
getRandomInt () {
|
|
return Math.floor(Math.random() * (50 - 5 + 1)) + 5
|
|
},
|
|
fillData () {
|
|
this.dataPoints = {
|
|
labels: ['January' + this.getRandomInt(), 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
|
|
datasets: [
|
|
{
|
|
label: 'Data One',
|
|
backgroundColor: '#f87979',
|
|
data: [this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt()]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
myStyles () {
|
|
return {
|
|
height: `${this.height}px`,
|
|
position: 'relative'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Helvetica', Arial;
|
|
color: #464646;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px solid #f1f1f1;
|
|
padding-bottom: 15px;
|
|
font-size: 28px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.Chart {
|
|
padding: 20px;
|
|
box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, .4);
|
|
border-radius: 20px;
|
|
margin: 50px 0;
|
|
}
|
|
</style>
|
|
|