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.
21 lines
396 B
21 lines
396 B
'use strict'
|
|
|
|
var createScene = require('../scene')
|
|
var createLine = require('gl-line3d')
|
|
|
|
var scene = createScene()
|
|
|
|
var points = []
|
|
for(var t = 0; t< 1000; ++t) {
|
|
var theta = Math.PI * t / 200.0
|
|
points.push([Math.cos(theta), 0.002 * t, Math.sin(theta)])
|
|
}
|
|
|
|
var linePlot = createLine({
|
|
gl: scene.gl,
|
|
position: points,
|
|
lineWidth: 5,
|
|
color: [1,0,0]
|
|
})
|
|
|
|
scene.add(linePlot)
|
|
|