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.
31 lines
1.0 KiB
31 lines
1.0 KiB
4 years ago
|
import { Radar } from '../BaseCharts';
|
||
|
export default {
|
||
|
extends: Radar,
|
||
|
mounted: function mounted() {
|
||
|
this.renderChart({
|
||
|
labels: ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'],
|
||
|
datasets: [{
|
||
|
label: 'My First dataset',
|
||
|
backgroundColor: 'rgba(179,181,198,0.2)',
|
||
|
borderColor: 'rgba(179,181,198,1)',
|
||
|
pointBackgroundColor: 'rgba(179,181,198,1)',
|
||
|
pointBorderColor: '#fff',
|
||
|
pointHoverBackgroundColor: '#fff',
|
||
|
pointHoverBorderColor: 'rgba(179,181,198,1)',
|
||
|
data: [65, 59, 90, 81, 56, 55, 40]
|
||
|
}, {
|
||
|
label: 'My Second dataset',
|
||
|
backgroundColor: 'rgba(255,99,132,0.2)',
|
||
|
borderColor: 'rgba(255,99,132,1)',
|
||
|
pointBackgroundColor: 'rgba(255,99,132,1)',
|
||
|
pointBorderColor: '#fff',
|
||
|
pointHoverBackgroundColor: '#fff',
|
||
|
pointHoverBorderColor: 'rgba(255,99,132,1)',
|
||
|
data: [28, 48, 40, 19, 96, 27, 100]
|
||
|
}]
|
||
|
}, {
|
||
|
responsive: true,
|
||
|
maintainAspectRatio: false
|
||
|
});
|
||
|
}
|
||
|
};
|