plunkerでvega
概要
plunkerでvegaやってみた。
数式をグラフにしてみた。
写真
サンプルコード
function run() {
var src = document.getElementById('src').value;
var values = [];
for(var x = -1; x < 1; x += 0.1)
{
eval(src);
values.push({
x: x,
y: y
});
}
const spec = {
'$schema': 'https://vega.github.io/schema/vega-lite/v2.json',
'width': 300,
'height': 300,
'data': {
'values': values
},
'mark': 'point',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y',
'type': 'quantitative'
}
}
};
vegaEmbed('#vis', spec);
}
成果物
function run() {
var src = document.getElementById('src').value;
var values = [];
for(var x = -1; x < 1; x += 0.1)
{
eval(src);
values.push({
x: x,
y: y
});
}
const spec = {
'$schema': 'https://vega.github.io/schema/vega-lite/v2.json',
'width': 300,
'height': 300,
'data': {
'values': values
},
'mark': 'point',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y',
'type': 'quantitative'
}
}
};
vegaEmbed('#vis', spec);
}
以上。
Author And Source
この問題について(plunkerでvega), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/176b0328d1cdc9582594著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .